Skip to content

Commit 70a14fc

Browse files
author
tanvi
committed
fix: remove invalid secrets check in release workflow
1 parent 7706aa7 commit 70a14fc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,10 @@ jobs:
5050
run: git push origin main --tags
5151

5252
- name: Publish to npm
53-
if: secrets.NPM_TOKEN != ''
53+
# 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
5457
run: npm publish --provenance --access public
5558
env:
5659
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)