Skip to content

Commit

Permalink
fix(.github/workflows/npmpublish): use --access public
Browse files Browse the repository at this point in the history
Since it's an organization package (`@closeio/(...)`), we must deliberately tell npm that this is a public package.
  • Loading branch information
buzinas committed Mar 23, 2020
1 parent 3b26905 commit f062c0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/npmpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ jobs:
node-version: 12
registry-url: https://registry.npmjs.org/
- run: yarn
- run: npm publish
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

0 comments on commit f062c0e

Please sign in to comment.