Skip to content

Commit 08fb02e

Browse files
committed
fix pnpm in gh deploy action
1 parent 01b5e47 commit 08fb02e

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

Diff for: .github/workflows/deploy.yml

+7-9
Original file line numberDiff line numberDiff line change
@@ -19,24 +19,22 @@ jobs:
1919
steps:
2020
- name: Checkout
2121
uses: actions/checkout@v4
22+
23+
- name: Setup pnpm
24+
uses: pnpm/action-setup@v2
25+
with:
26+
version: 9
27+
run_install: false
2228

2329
- name: Setup Node.js
2430
uses: actions/setup-node@v4
2531
with:
2632
node-version: '23'
2733
cache: 'pnpm'
2834

29-
- name: Setup pnpm
30-
uses: pnpm/action-setup@v2
31-
with:
32-
version: 9.15.9
33-
3435
- name: Install dependencies
3536
run: pnpm install
36-
37-
- name: Build
38-
run: pnpm run build
39-
37+
4038
- name: Setup Pages
4139
uses: actions/configure-pages@v4
4240

0 commit comments

Comments
 (0)