We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 919b4d6 commit 5c3b423Copy full SHA for 5c3b423
.github/workflows/publish.yml
@@ -43,6 +43,9 @@ jobs:
43
- name: Build
44
run: bun run build
45
- name: Publish
46
- run: npm publish --access public --non-interactive --new-version ${{ steps.version.outputs.value }}
+ run: |
47
+ echo "//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}" > ~/.npmrc
48
+ echo "Publishing version ${{ steps.version.outputs.value }}"
49
+ npm publish --access public
50
env:
51
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments