We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0439577 commit 59a6e39Copy full SHA for 59a6e39
.github/workflows/publish-docs.yml
@@ -34,6 +34,8 @@ jobs:
34
# with:
35
# version: 9 # Not needed if you've set "packageManager" in package.json
36
# - uses: oven-sh/setup-bun@v1 # Uncomment this if you're using Bun
37
+ - name: Change directory to docs
38
+ run: cd docs
39
- name: Setup Node
40
uses: actions/setup-node@v4
41
with:
@@ -43,8 +45,10 @@ jobs:
43
45
uses: actions/configure-pages@v4
44
46
- name: Install dependencies
47
run: npm ci # or pnpm install / yarn install / bun install
48
+ working-directory: ./docs
49
- name: Build with VitePress
50
run: npm run docs:build # or pnpm docs:build / yarn docs:build / bun run docs:build
51
52
- name: Upload artifact
53
uses: actions/upload-pages-artifact@v3
54
0 commit comments