Skip to content

Commit

Permalink
feat: fix the workflow yml
Browse files Browse the repository at this point in the history
  • Loading branch information
karlsbeard committed Dec 21, 2024
1 parent 03088b0 commit e2cb211
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ jobs:
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Install dependencies
run: pnpm ci # 或 pnpm install / yarn install / bun install
run: pnpm install # 或 pnpm install / yarn install / bun install
- name: Build with VitePress
run: pnpm run docs:build # 或 pnpm docs:build / yarn docs:build / bun run docs:build
run: pnpm run build # 或 pnpm docs:build / yarn docs:build / bun run docs:build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/.vitepress/dist
path: /.vitepress/dist

# 部署工作
deploy:
Expand Down

0 comments on commit e2cb211

Please sign in to comment.