diff options
author | 2023-04-28 09:44:44 -0700 | |
---|---|---|
committer | 2023-04-28 09:44:44 -0700 | |
commit | 48671b77be26158b7e8a79e0c3b617f182bdafaf (patch) | |
tree | 9c73b12dd65e6776741c8ba8ab07ecd0f68a0fb5 | |
parent | b7c13f2ccc048416bca2699b73dc73201e60c011 (diff) | |
download | bun-48671b77be26158b7e8a79e0c3b617f182bdafaf.tar.gz bun-48671b77be26158b7e8a79e0c3b617f182bdafaf.tar.zst bun-48671b77be26158b7e8a79e0c3b617f182bdafaf.zip |
Use GITHUB_PATH instead of cp
-rw-r--r-- | .github/workflows/bun-test.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/bun-test.yml b/.github/workflows/bun-test.yml index c22fd5c35..d3033bbb7 100644 --- a/.github/workflows/bun-test.yml +++ b/.github/workflows/bun-test.yml @@ -46,7 +46,7 @@ jobs: run: | npm install @oven/bun-${{ matrix.tag }}@${{ github.event.inputs.version }} chmod +x node_modules/@oven/bun-${{ matrix.tag }}/bin/bun - cp node_modules/@oven/bun-${{ matrix.tag }}/bin/bun /usr/bin/bun + echo "node_modules/@oven/bun-${{ matrix.tag }}/bin" >> $GITHUB_PATH - id: test name: Test run: | |