Skip to content

Commit ef1bbd1

Browse files
committed
Fix GitHub Actions workflow for Web Docs folder structure
1 parent 325649b commit ef1bbd1

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/deploy.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,15 @@ jobs:
3030
with:
3131
node-version: '18'
3232
cache: 'npm'
33+
cache-dependency-path: 'Web Docs/package-lock.json'
3334

3435
- name: Install dependencies
3536
run: npm ci
37+
working-directory: './Web Docs'
3638

3739
- name: Build documentation
3840
run: npm run docs:build
41+
working-directory: './Web Docs'
3942

4043
- name: Setup Pages
4144
if: github.ref == 'refs/heads/main'
@@ -45,7 +48,7 @@ jobs:
4548
if: github.ref == 'refs/heads/main'
4649
uses: actions/upload-pages-artifact@v3
4750
with:
48-
path: docs/.vitepress/dist
51+
path: 'Web Docs/docs/.vitepress/dist'
4952

5053
- name: Deploy to GitHub Pages
5154
if: github.ref == 'refs/heads/main'

0 commit comments

Comments
 (0)