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: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,11 @@ jobs:
run: npm install -g npm@11.5.1

- name: Publish to npm
env:
NPM_CONFIG_PROVENANCE: false
run: |
if [ "${{ github.event.release.prerelease }}" = "true" ]; then
pnpm publish --no-git-checks --tag next --access public --provenance
pnpm publish --no-git-checks --tag next --access public
else
pnpm publish --no-git-checks --tag latest --access public --provenance
pnpm publish --no-git-checks --tag latest --access public
fi
Loading