Skip to content

Commit 5929954

Browse files
committed
fix: fix doc pages bugs
1 parent c9b5759 commit 5929954

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/deploy-docs.yaml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,14 @@ jobs:
2424
node-version: '22'
2525

2626
- name: Install dependencies
27-
run: npm install
27+
run: |
28+
cd docs
29+
npm install
2830
2931
- name: Build documentation
30-
run: npm run docs:build
32+
run: |
33+
cd docs
34+
npm run docs:build
3135
3236
- name: Deploy to GitHub Pages
3337
run: |
@@ -42,4 +46,4 @@ jobs:
4246
4347
git push --force --quiet \
4448
"https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git" \
45-
HEAD:veadk/docs
49+
HEAD:docs

0 commit comments

Comments
 (0)