Skip to content

Commit

Permalink
ci: remove npm publish --dry flag
Browse files Browse the repository at this point in the history
  • Loading branch information
chimurai committed Apr 14, 2024
1 parent c111041 commit c839555
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
run: yarn install
- name: Publish to NPM (beta)
if: "github.event.release.prerelease"
run: npm publish --provenance --access public --tag beta --dry
run: npm publish --provenance --access public --tag beta
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Publish to NPM (release)
if: "!github.event.release.prerelease"
run: npm publish --provenance --access public --dry
run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit c839555

Please sign in to comment.