We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5df0e45 commit 263f2acCopy full SHA for 263f2ac
1 file changed
.github/workflows/release-and-publish.yml
@@ -86,12 +86,9 @@ jobs:
86
# This will tell npm to publish your scoped package with public access
87
- name: Publish with latest tag
88
if: ${{ needs.setup_variables.outputs.isLatest == 'true' }}
89
- run: npm publish --access public
90
- env:
91
- NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
+ run: npm publish --access public --registry https://npmjs.org
92
93
- name: Publish with next tag
94
if: ${{ needs.setup_variables.outputs.isLatest != 'true' }}
95
- run: npm publish --access public --tag next
96
97
+ run: npm publish --access public --tag next --registry https://npmjs.org
+
0 commit comments