diff options
author | 2023-01-23 23:10:16 -0800 | |
---|---|---|
committer | 2023-01-23 23:10:16 -0800 | |
commit | ad40eec079c4417ee6e97cb1873e2f06cfe21be9 (patch) | |
tree | 0c47d9159ebea1ae4238de591c426ce06d899f00 | |
parent | 90d62ecc24591c1213a659e783c9b20249d66a76 (diff) | |
download | bun-ad40eec079c4417ee6e97cb1873e2f06cfe21be9.tar.gz bun-ad40eec079c4417ee6e97cb1873e2f06cfe21be9.tar.zst bun-ad40eec079c4417ee6e97cb1873e2f06cfe21be9.zip |
Fix ordering of github action command
-rw-r--r-- | .github/workflows/bun-npm-release.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/bun-npm-release.yml b/.github/workflows/bun-npm-release.yml index 7fde74464..25f596b8e 100644 --- a/.github/workflows/bun-npm-release.yml +++ b/.github/workflows/bun-npm-release.yml @@ -41,7 +41,7 @@ jobs: run: bun install - id: bun-run name: Release - run: bun run npm -- publish "${{ env.TAG }}" + run: bun run npm -- "${{ env.TAG }}" publish env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |