We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe53bfe commit 389d666Copy full SHA for 389d666
.github/workflows/ci.yml
@@ -9,7 +9,7 @@ jobs:
9
- uses: actions/checkout@v6
10
- uses: actions/setup-node@v6
11
with:
12
- node-version: 18
+ node-version: 24
13
cache: 'npm'
14
15
- name: NPM Install
.github/workflows/publish.yml
@@ -2,6 +2,9 @@ name: Publish to NPM/GPR
2
on:
3
release:
4
types: [published]
5
+permissions:
6
+ id-token: write
7
+ contents: read
8
jobs:
publish:
@@ -15,7 +18,7 @@ jobs:
18
- name: Setup node
16
19
uses: actions/setup-node@v6
17
20
21
22
23
registry-url: 'https://registry.npmjs.org'
24
@@ -27,8 +30,6 @@ jobs:
27
30
28
31
- name: Publish (NPM)
29
32
run: npm publish --access public
- env:
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
33
34
35
0 commit comments