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 426ccc8 commit 05c5797Copy full SHA for 05c5797
.github/workflows/deploy-docs.yml
@@ -9,6 +9,7 @@ on:
9
10
env:
11
NODE_VER: 22.11
12
+ PNPM_VER: 10.9.0
13
CI: true
14
15
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
@@ -27,6 +28,9 @@ jobs:
27
28
# Build job
29
build:
30
runs-on: ubuntu-latest
31
+ defaults:
32
+ run:
33
+ working-directory: docs/
34
steps:
35
- name: Checkout
36
uses: actions/checkout@v4
@@ -36,13 +40,15 @@ jobs:
40
- uses: pnpm/action-setup@v4
37
41
name: Install pnpm
38
42
with:
43
+ version: ${{ env.PNPM_VER }}
39
44
run_install: false
45
46
- name: Use Node.js ${{ env.NODE_VER }}
47
uses: actions/setup-node@v4
48
49
node-version: ${{ env.NODE_VER }}
50
cache: 'pnpm'
51
+ cache-dependency-path: docs/
52
53
- name: Setup Pages
54
uses: actions/configure-pages@v4
0 commit comments