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 325649b commit ef1bbd1Copy full SHA for ef1bbd1
1 file changed
.github/workflows/deploy.yml
@@ -30,12 +30,15 @@ jobs:
30
with:
31
node-version: '18'
32
cache: 'npm'
33
+ cache-dependency-path: 'Web Docs/package-lock.json'
34
35
- name: Install dependencies
36
run: npm ci
37
+ working-directory: './Web Docs'
38
39
- name: Build documentation
40
run: npm run docs:build
41
42
43
- name: Setup Pages
44
if: github.ref == 'refs/heads/main'
@@ -45,7 +48,7 @@ jobs:
45
48
46
49
uses: actions/upload-pages-artifact@v3
47
50
- path: docs/.vitepress/dist
51
+ path: 'Web Docs/docs/.vitepress/dist'
52
53
- name: Deploy to GitHub Pages
54
0 commit comments