Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,16 @@ jobs:
echo "already_published=false" >> "$GITHUB_OUTPUT"
fi

- name: Debug npm auth
if: steps.check-main.outputs.already_published == 'false'
run: |
echo "npm version: $(npm --version)"
echo "node version: $(node --version)"
npm whoami --registry https://registry.npmjs.org/ 2>&1 || echo "::warning::npm whoami failed — OIDC auth may not be working"
echo "--- .npmrc ---"
grep 'registry' ~/.npmrc 2>/dev/null || echo "no ~/.npmrc or no registry lines"
grep 'registry' .npmrc 2>/dev/null || echo "no .npmrc or no registry lines"

- name: Publish platform packages
if: steps.check-main.outputs.already_published == 'false'
env:
Expand Down
Loading