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 5065082 commit 58d9e9fCopy full SHA for 58d9e9f
.github/workflows/publish.yml
@@ -9,14 +9,21 @@ jobs:
9
build:
10
runs-on: ubuntu-latest
11
steps:
12
- - uses: actions/checkout@v3
13
- - uses: actions/setup-node@v3
+ - uses: actions/checkout@v4
+
14
+ - uses: pnpm/action-setup@v4
15
+ name: Install pnpm
16
with:
- node-version: '18'
- registry-url: 'https://registry.npmjs.org'
17
- - uses: pnpm/action-setup@v2
+ version: 9
18
+ run_install: false
19
20
+ - name: Install Node.js
21
+ uses: actions/setup-node@v4
22
- version: 8
23
+ node-version: 22
24
+ cache: 'pnpm'
25
+ registry-url: 'https://registry.npmjs.org'
26
27
- run: pnpm i && pnpm publish --no-git-checks
28
env:
29
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments