We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6d901c4 + ce20add commit 7ca107dCopy full SHA for 7ca107d
1 file changed
.github/workflows/publish.yml
@@ -21,15 +21,21 @@ jobs:
21
with:
22
version: 10.12.4
23
24
- - name: Use Node.js 22
+ - name: Use Node.js 22.14
25
uses: actions/setup-node@v4
26
27
- node-version: 22
+ node-version: 22.14.0
28
cache: pnpm
29
registry-url: https://registry.npmjs.org
30
31
- name: Install dependencies
32
run: pnpm install --frozen-lockfile
33
34
+ - name: Upgrade npm for trusted publishing
35
+ run: npm install -g npm@latest
36
+
37
+ - name: Print runtime versions
38
+ run: node -v && npm -v
39
40
- name: Publish current main release
41
run: pnpm release
0 commit comments