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 c9b5759 commit 5929954Copy full SHA for 5929954
.github/workflows/deploy-docs.yaml
@@ -24,10 +24,14 @@ jobs:
24
node-version: '22'
25
26
- name: Install dependencies
27
- run: npm install
+ run: |
28
+ cd docs
29
+ npm install
30
31
- name: Build documentation
- run: npm run docs:build
32
33
34
+ npm run docs:build
35
36
- name: Deploy to GitHub Pages
37
run: |
@@ -42,4 +46,4 @@ jobs:
42
46
43
47
git push --force --quiet \
44
48
"https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git" \
45
- HEAD:veadk/docs
49
+ HEAD:docs
0 commit comments