We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 660bad6 commit fc7936fCopy full SHA for fc7936f
1 file changed
.github/workflows/npm-publish.yml
@@ -19,6 +19,7 @@ jobs:
19
uses: actions/setup-node@v4
20
with:
21
node-version: 22.12.0
22
+ registry-url: https://registry.npmjs.org/
23
cache: "npm"
24
cache-dependency-path: package-lock.json
25
@@ -61,6 +62,13 @@ jobs:
61
62
- name: Build package
63
run: npm run build
64
65
+ - name: Debug OIDC identity
66
+ run: |
67
+ echo "repo=$GITHUB_REPOSITORY"
68
+ echo "ref=$GITHUB_REF"
69
+ echo "workflow_ref=$GITHUB_WORKFLOW_REF"
70
+ echo "oidc_url_set=${ACTIONS_ID_TOKEN_REQUEST_URL:+yes}"
71
+
72
- name: Publish to npm
73
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'
74
run: npm publish --access public --provenance
0 commit comments