We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 44f98d7 + d5dbbe7 commit cbc5ff3Copy full SHA for cbc5ff3
.github/workflows/publish.yml
@@ -66,4 +66,8 @@ jobs:
66
67
- name: Publish new version
68
if: env.VERSION_CHANGED == 'true'
69
- run: npm publish --provenance --access public --verbose
+ run: |
70
+ # Create clean .npmrc for OIDC (no auth token, just registry)
71
+ echo "registry=https://registry.npmjs.org/" > ~/.npmrc
72
+ # Publish with OIDC provenance
73
+ npm publish --provenance --access public --verbose
0 commit comments