Skip to content

Commit

Permalink
ci: fix publish
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonraimondi committed Jun 5, 2024
1 parent 026fc5c commit fee555e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish_npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
run: |
if ${{ github.event.release.prerelease }}; then
echo "Publishing pre-release..."
pnpm publish --verbose --access=public --tag next
pnpm publish --verbose --access=public --no-git-checks --tag next
else
echo "Publishing release..."
pnpm publish --verbose --access=public
pnpm publish --verbose --access=public --no-git-checks
fi
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}

0 comments on commit fee555e

Please sign in to comment.