We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 171546b commit bdd6f1dCopy full SHA for bdd6f1d
1 file changed
.github/workflows/release.yml
@@ -4,20 +4,22 @@ on:
4
push:
5
tags: "*"
6
7
+permissions:
8
+ id-token: write
9
+ contents: read
10
+
11
jobs:
12
release:
13
name: Release
14
runs-on: ubuntu-latest
15
16
steps:
17
- uses: actions/checkout@v2
- - name: Use Node.js 16.14.0
18
+ - name: Use Node.js 24.12.0
19
uses: actions/setup-node@v1
20
with:
- node-version: 16.14.0
21
+ node-version: 24.12.0
22
registry-url: "https://registry.npmjs.org"
23
- run: npm ci
24
- run: npm run build
25
- run: npm publish
- env:
- NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
0 commit comments