aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Ashcon Partovi <ashcon@partovi.net> 2023-01-23 23:10:16 -0800
committerGravatar GitHub <noreply@github.com> 2023-01-23 23:10:16 -0800
commitad40eec079c4417ee6e97cb1873e2f06cfe21be9 (patch)
tree0c47d9159ebea1ae4238de591c426ce06d899f00
parent90d62ecc24591c1213a659e783c9b20249d66a76 (diff)
downloadbun-ad40eec079c4417ee6e97cb1873e2f06cfe21be9.tar.gz
bun-ad40eec079c4417ee6e97cb1873e2f06cfe21be9.tar.zst
bun-ad40eec079c4417ee6e97cb1873e2f06cfe21be9.zip
Fix ordering of github action command
-rw-r--r--.github/workflows/bun-npm-release.yml2
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 }}