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
5 changes: 4 additions & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ jobs:

- name: Build and publish
if: steps.check.outputs.published == 'false'
run: pnpm build && npm publish --access public --provenance
run: |
# Clear the placeholder token so npm uses OIDC instead
npm config set //registry.npmjs.org/:_authToken ""
pnpm build && npm publish --access public --provenance

- name: Ensure git tag exists
if: steps.check.outputs.published == 'false'
Expand Down
Loading