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 59bfa7f commit 4104a22Copy full SHA for 4104a22
.github/workflows/publish.yml
@@ -80,6 +80,13 @@ jobs:
80
echo "should-publish=$SHOULD_PUBLISH" >> $GITHUB_OUTPUT
81
echo "Should publish: $SHOULD_PUBLISH"
82
83
+ - name: Debug npm authentication
84
+ if: steps.version-check.outputs.should-publish == 'true'
85
+ run: |
86
+ echo "Checking npm authentication..."
87
+ npm whoami || echo "Not authenticated yet"
88
+ echo "Registry: $(npm config get registry)"
89
+
90
- name: Publish to npm
91
if: steps.version-check.outputs.should-publish == 'true'
92
run: npm publish --access public --provenance
0 commit comments