Skip to content

Commit dabd6aa

Browse files
committed
Update GitHub Actions
1 parent c101751 commit dabd6aa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,17 @@ jobs:
4040
uses: actions/setup-node@v4
4141
with:
4242
node-version: 22
43-
cache: npm # or pnpm / yarn
43+
cache: yarn # or pnpm / yarn
4444
- name: Setup Pages
4545
uses: actions/configure-pages@v4
4646
- name: Install dependencies
47-
run: npm ci # or pnpm install / yarn install / bun install
47+
run: yarn install # or pnpm install / yarn install / bun install
4848
- name: Build with VitePress
49-
run: npm run docs:build # or pnpm docs:build / yarn docs:build / bun run docs:build
49+
run: yarn build # or pnpm docs:build / yarn docs:build / bun run docs:build
5050
- name: Upload artifact
5151
uses: actions/upload-pages-artifact@v3
5252
with:
53-
path: docs/.vitepress/dist
53+
path: content/.vitepress/dist
5454

5555
# Deployment job
5656
deploy:

0 commit comments

Comments
 (0)