Skip to content

Commit 40b1c9d

Browse files
committed
Fix doc publishing workflow
1 parent 0439577 commit 40b1c9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ jobs:
4242
- name: Setup Pages
4343
uses: actions/configure-pages@v4
4444
- name: Install dependencies
45-
run: npm ci # or pnpm install / yarn install / bun install
45+
run: cd docs && npm ci # or pnpm install / yarn install / bun install
4646
- name: Build with VitePress
47-
run: npm run docs:build # or pnpm docs:build / yarn docs:build / bun run docs:build
47+
run: cd docs && npm run docs:build # or pnpm docs:build / yarn docs:build / bun run docs:build
4848
- name: Upload artifact
4949
uses: actions/upload-pages-artifact@v3
5050
with:

0 commit comments

Comments
 (0)