Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/publish-js.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -146,10 +146,16 @@ jobs:

- name: Publish stable release to npm
if: ${{ env.RELEASE_TYPE == 'stable' }}
env:
NODE_AUTH_TOKEN: ""
NPM_TOKEN: ""
run: npm publish --provenance --access public

- name: Publish prerelease to npm
if: ${{ env.RELEASE_TYPE == 'prerelease' }}
env:
NODE_AUTH_TOKEN: ""
NPM_TOKEN: ""
run: npm publish --tag rc --provenance --access public

- name: Create and push stable release tag
Expand Down
Loading