We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8acf3ab commit 3965e38Copy full SHA for 3965e38
.github/workflows/release.yml
@@ -36,13 +36,13 @@ jobs:
36
- name: Publish to npm
37
run: |
38
if [[ "${{ github.ref }}" == *"-beta"* ]]; then
39
- npm publish --provenance --tag beta
+ npm publish --provenance --access public --tag beta
40
elif [[ "${{ github.ref }}" == *"-alpha"* ]]; then
41
- npm publish --provenance --tag alpha
+ npm publish --provenance --access public --tag alpha
42
elif [[ "${{ github.ref }}" == *"-rc"* ]]; then
43
- npm publish --provenance --tag rc
+ npm publish --provenance --access public --tag rc
44
else
45
- npm publish --provenance
+ npm publish --provenance --access public
46
fi
47
env:
48
NODE_AUTH_TOKEN: ${{ secrets.SAF_NPM_TOKEN }}
0 commit comments