We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2191b5 commit 25523cfCopy full SHA for 25523cf
1 file changed
.github/workflows/publish.yml
@@ -17,19 +17,19 @@ jobs:
17
- name: Checkout
18
uses: actions/checkout@v4
19
20
- - name: Use Node.js
21
- uses: actions/setup-node@v4
22
- with:
23
- node-version: 20
24
- cache: pnpm
25
- registry-url: 'https://registry.npmjs.org'
26
-
27
- name: Setup pnpm
28
uses: pnpm/action-setup@v4
29
with:
30
version: 9
31
run_install: false
32
+ - name: Setup Node.js
+ uses: actions/setup-node@v4
+ with:
+ node-version: 20
+ cache: 'pnpm'
+ registry-url: 'https://registry.npmjs.org'
+
33
- name: Install dependencies
34
run: pnpm install --frozen-lockfile
35
@@ -42,5 +42,4 @@ jobs:
42
- name: Publish to npm
43
env:
44
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
45
- run: |
46
- pnpm publish --access public --no-git-checks
+ run: pnpm publish --access public --no-git-checks
0 commit comments