Skip to content

Commit 6acea82

Browse files
committed
bugfix(chore): refactor file path
1 parent 1e0b718 commit 6acea82

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/docs-deploy.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,23 @@ jobs:
2828
with:
2929
node-version: 22
3030
cache: npm
31+
cache-dependency-path: docs/package-lock.json
32+
3133
- name: Setup Pages
3234
uses: actions/configure-pages@v4
3335

3436
- name: Install dependencies
37+
working-directory: docs
3538
run: npm ci
3639

3740
- name: Build with VitePress
41+
working-directory: docs
3842
run: npm run docs:build
3943

4044
- name: Upload artifact
4145
uses: actions/upload-pages-artifact@v3
4246
with:
43-
path: .vitepress/dist
47+
path: docs/.vitepress/dist
4448

4549
deploy:
4650
environment:

0 commit comments

Comments
 (0)