We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75435a4 commit 3bc9ce8Copy full SHA for 3bc9ce8
‎.github/workflows/deploy.yaml
@@ -23,21 +23,27 @@ jobs:
23
uses: actions/checkout@v4
24
with:
25
fetch-depth: 0
26
+
27
+ - name: Install pnpm
28
+ uses: pnpm/action-setup@v4
29
+ with:
30
+ version: 10
31
32
- name: Setup Node
33
uses: actions/setup-node@v4
34
35
node-version: 20
- cache: pnpm
- - name: Setup pnpm
- uses: pnpm/action-setup@v2
- with:
- version: 8
36
+ cache: "pnpm"
37
38
- name: Setup Pages
39
uses: actions/configure-pages@v4
40
41
- name: Install dependencies
- run: pnpm i
42
+ run: pnpm install
43
44
- name: Build with vitepress
45
run: pnpm run docs:build
46
47
- name: Upload artifact
48
uses: actions/upload-pages-artifact@v3
49
0 commit comments