Skip to content
Merged
Show file tree
Hide file tree
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: 3 additions & 2 deletions .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,10 +223,11 @@ jobs:
run: |
# The publishConfig in package.json already points to GitHub Packages
# Include --provenance flag (GitHub Packages uses attestations generated above)
# --access public is required when using --provenance
if [ "${{ github.event.inputs.is_beta }}" == "true" ]; then
npm publish --tag beta --provenance
npm publish --tag beta --access public --provenance
else
npm publish --provenance
npm publish --access public --provenance
fi
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,6 @@ jobs:
path: dist/

- name: Publish to GitHub Packages
run: npm publish --provenance
run: npm publish --access public --provenance
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading