Skip to content

Commit f062c0e

Browse files
authored
fix(.github/workflows/npmpublish): use --access public
Since it's an organization package (`@closeio/(...)`), we must deliberately tell npm that this is a public package.
1 parent 3b26905 commit f062c0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/npmpublish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ jobs:
2525
node-version: 12
2626
registry-url: https://registry.npmjs.org/
2727
- run: yarn
28-
- run: npm publish
28+
- run: npm publish --access public
2929
env:
3030
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

0 commit comments

Comments
 (0)