We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8686e3f commit 99f762aCopy full SHA for 99f762a
1 file changed
.github/workflows/release.yml
@@ -19,6 +19,11 @@ jobs:
19
with:
20
fetch-depth: 0
21
22
+ - name: Clear npmrc to enforce OIDC auth
23
+ run: |
24
+ rm -f ~/.npmrc
25
+ rm -f .npmrc
26
+
27
- name: Setup Node.js
28
uses: actions/setup-node@v4
29
@@ -37,6 +42,5 @@ jobs:
37
42
run: npm run build
38
43
39
44
- name: Publish to npm
40
- # Removed the 'env: NODE_AUTH_TOKEN' line entirely.
41
45
# OIDC handles authentication automatically now.
46
run: npm publish --provenance # Added --provenance as a 2025 best practice
0 commit comments