We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c05431 commit 6533cfbCopy full SHA for 6533cfb
1 file changed
.github/workflows/release.yml
@@ -0,0 +1,27 @@
1
+name: release
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - v*
7
8
+jobs:
9
+ release:
10
+ permissions:
11
+ contents: read
12
+ id-token: write
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
16
17
+ - name: Install pnpm
18
+ uses: pnpm/action-setup@v4.0.0
19
20
+ - name: Install Node.js
21
+ uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
22
+ with:
23
+ node-version-file: ".node-version"
24
+ cache: "pnpm"
25
26
+ - name: release
27
+ run: npm i -g npm@^11.5.2 && pnpm publish --provenance --no-git-checks
0 commit comments