Skip to content

Commit 0d31c0a

Browse files
committed
Fix CI
1 parent 8c83bad commit 0d31c0a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ jobs:
3232
uses: actions/checkout@v4
3333
with:
3434
fetch-depth: 0 # Not needed if lastUpdated is not enabled
35-
# - uses: pnpm/action-setup@v3 # Uncomment this if you're using pnpm
36-
# - uses: oven-sh/setup-bun@v1 # Uncomment this if you're using Bun
3735
- name: Setup Node
3836
uses: actions/setup-node@v4
3937
with:
@@ -42,9 +40,11 @@ jobs:
4240
- name: Setup Pages
4341
uses: actions/configure-pages@v4
4442
- name: Install dependencies
45-
run: npm ci # or pnpm install / yarn install / bun install
43+
run: npm ci
44+
- name: Setup playground
45+
run: npm run dev:prepare
4646
- name: Build with VitePress
47-
run: npm run docs:build # or pnpm docs:build / yarn docs:build / bun run docs:build
47+
run: npm run docs:build
4848
- name: Upload artifact
4949
uses: actions/upload-pages-artifact@v3
5050
with:

0 commit comments

Comments
 (0)