We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24df065 commit 4715cedCopy full SHA for 4715ced
.github/workflows/nodejs.yml
@@ -64,6 +64,7 @@ jobs:
64
with:
65
node-version: 20.x
66
cache: 'yarn'
67
+ registry-url: 'https://registry.npmjs.org'
68
69
- run: yarn install --frozen-lockfile
70
- run: yarn build
@@ -77,4 +78,7 @@ jobs:
77
78
# npm publish runs directly in workflow step so OIDC works
79
- name: Publish to npm with OIDC
80
if: ${{ hashFiles('.release-created') != '' }}
- run: npm publish --workspaces --access public --provenance --registry https://registry.npmjs.org
81
+ run: |
82
+ echo "npm version: $(npm --version)"
83
+ echo "OIDC URL available: ${{ env.ACTIONS_ID_TOKEN_REQUEST_URL != '' }}"
84
+ npm publish --workspaces --access public --provenance --registry https://registry.npmjs.org
0 commit comments