We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 023822f commit 97bfb7cCopy full SHA for 97bfb7c
1 file changed
.github/workflows/release.yaml
@@ -5,17 +5,19 @@ on:
5
tags:
6
- 'v*'
7
8
+permissions:
9
+ id-token: write
10
+ contents: read
11
+
12
jobs:
13
build:
14
runs-on: ubuntu-latest
15
steps:
16
- uses: actions/checkout@v3
17
- uses: actions/setup-node@v3
18
with:
- node-version: '22.x'
19
+ node-version: '22'
20
registry-url: 'https://registry.npmjs.org'
21
- run: npm ci
22
- run: npm run build
23
- run: npm publish --access public
- env:
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments