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 1e0b718 commit 6acea82Copy full SHA for 6acea82
1 file changed
.github/workflows/docs-deploy.yml
@@ -28,19 +28,23 @@ jobs:
28
with:
29
node-version: 22
30
cache: npm
31
+ cache-dependency-path: docs/package-lock.json
32
+
33
- name: Setup Pages
34
uses: actions/configure-pages@v4
35
36
- name: Install dependencies
37
+ working-directory: docs
38
run: npm ci
39
40
- name: Build with VitePress
41
42
run: npm run docs:build
43
44
- name: Upload artifact
45
uses: actions/upload-pages-artifact@v3
46
- path: .vitepress/dist
47
+ path: docs/.vitepress/dist
48
49
deploy:
50
environment:
0 commit comments