We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e80f3e1 + bb5eba3 commit d0bd16cCopy full SHA for d0bd16c
1 file changed
.github/workflows/publish.yml
@@ -9,18 +9,17 @@ jobs:
9
runs-on: ubuntu-latest
10
permissions:
11
contents: read
12
+ id-token: write
13
steps:
- - uses: actions/checkout@v3
14
- - uses: actions/setup-node@v3
+ - uses: actions/checkout@v4
15
+ - uses: actions/setup-node@v4
16
with:
- node-version: 14
17
+ node-version: 24
18
registry-url: https://registry.npmjs.org/
19
cache: npm
20
- run: npm ci
21
- run: npm test
22
- run: npm version ${TAG_NAME} --git-tag-version=false
23
env:
24
TAG_NAME: ${{ github.event.release.tag_name }}
- - run: npm whoami; npm --ignore-scripts publish
25
- env:
26
- NODE_AUTH_TOKEN: ${{secrets.npm_token}}
+ - run: npm --ignore-scripts publish --provenance
0 commit comments