We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7706aa7 commit 70a14fcCopy full SHA for 70a14fc
.github/workflows/release.yml
@@ -50,7 +50,10 @@ jobs:
50
run: git push origin main --tags
51
52
- name: Publish to npm
53
- if: secrets.NPM_TOKEN != ''
+ # Note: This step will fail if NPM_TOKEN secret is not configured.
54
+ # To enable automated npm publishing, add NPM_TOKEN secret in repo settings.
55
+ # For now, you can publish manually with: npm publish --access public
56
+ continue-on-error: true
57
run: npm publish --provenance --access public
58
env:
59
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments