We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 556158c commit c6692acCopy full SHA for c6692ac
1 file changed
.github/workflows/release.yml
@@ -4,20 +4,21 @@ on:
4
push:
5
tags: '*'
6
7
+permissions:
8
+ id-token: write # Required for trusted publishing
9
+ contents: read
10
+
11
jobs:
12
release:
13
name: Release
14
runs-on: ubuntu-latest
15
16
steps:
- - uses: actions/checkout@v2
- - name: Use Node.js 16
- uses: actions/setup-node@v1
17
+ - uses: actions/checkout@v4
18
+ - uses: actions/setup-node@v4
19
with:
- node-version: 16
20
+ node-version: 24
21
registry-url: 'https://registry.npmjs.org'
22
- run: npm ci
23
- run: npm test
24
- run: npm publish
- env:
- NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
0 commit comments