Skip to content

Commit

Permalink
ci: make package as public
Browse files Browse the repository at this point in the history
  • Loading branch information
pchmn committed Mar 16, 2023
1 parent 2aac840 commit f78bb2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ jobs:

- name: 🚀 Publish next package
if: contains(github.ref_name, 'beta')
run: npm publish --tag next
run: npm publish --tag next --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: 🚀 Publish package
if: "!contains(github.ref_name, 'beta')"
run: npm publish
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit f78bb2a

Please sign in to comment.