Skip to content

Commit

Permalink
Remove provenance flag (#101)
Browse files Browse the repository at this point in the history
## Description

<!-- Describe your changes in detail -->
<!-- Does this fix a bug, implement a new feature, etc? -->

### Related Issue(s)

<!-- Reference the issue this PR relates to -->
<!-- Use keywords if possible (ex. Closes #10 ) -->
<!--
https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests
-->

## Screenshots

<!-- (if applicable) -->
  • Loading branch information
riccjohn authored Feb 22, 2025
2 parents a174164 + 4483cb4 commit 10d5029
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ jobs:
- name: Publish package to NPM
run: |
if [[ "${{ github.ref_name }}" == *-alpha* ]]; then
pnpm publish --provenance --access public --tag alpha
pnpm publish --access public --tag alpha
elif [[ "${{ github.ref_name }}" == *-beta* ]]; then
pnpm publish --provenance --access public --tag beta
pnpm publish --access public --tag beta
elif [[ "${{ github.ref_name }}" == *-canary* ]]; then
pnpm publish --provenance --access public --tag canary
pnpm publish --access public --tag canary
else
pnpm publish --provenance --access public
pnpm publish --access public
fi
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

0 comments on commit 10d5029

Please sign in to comment.