We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bab324c commit 59aad2bCopy full SHA for 59aad2b
1 file changed
.github/workflows/release.yml
@@ -15,7 +15,7 @@ jobs:
15
16
- uses: actions/setup-node@v4
17
with:
18
- node-version: 20
+ node-version: 24
19
registry-url: https://registry.npmjs.org
20
21
- run: npm ci
@@ -27,8 +27,11 @@ jobs:
27
id: version
28
run: echo "version=$(node -p 'require("./package.json").version')" >> "$GITHUB_OUTPUT"
29
30
+ # Clear the token placeholder so npm falls through to OIDC auth.
31
- name: Publish to npm
- run: npm publish --access public
32
+ run: |
33
+ npm config delete //registry.npmjs.org/:_authToken || true
34
+ npm publish --access public
35
36
- name: Create git tag
37
run: |
0 commit comments