We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e11b0d1 commit 20189ffCopy full SHA for 20189ff
1 file changed
.github/workflows/release.yml
@@ -10,14 +10,15 @@ jobs:
10
environment: npm
11
permissions:
12
id-token: write # required for npm trusted publishing (OIDC)
13
+ contents: read
14
15
steps:
16
- uses: actions/checkout@v4
17
18
- name: Setup Node.js
19
uses: actions/setup-node@v4
20
with:
- node-version: "20"
21
+ node-version: "24"
22
registry-url: "https://registry.npmjs.org"
23
24
- name: Set version from tag
@@ -26,6 +27,4 @@ jobs:
26
27
npm version "$VERSION" --no-git-tag-version
28
29
- name: Publish to npm
- run: npm publish --access public --provenance
30
- env:
31
- NODE_AUTH_TOKEN: "" # clear GitHub token so npm falls back to OIDC trusted publishing
+ run: npm publish
0 commit comments