Skip to content

Commit

Permalink
Update deploy.yml
Browse files Browse the repository at this point in the history
修复报错
  • Loading branch information
chuhaoming committed May 10, 2024
1 parent 1c7de2e commit 2293919
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,19 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0 # 如果未启用 lastUpdated,则不需要
uses: pnpm/action-setup@v3
# - uses: pnpm/action-setup@v3 # 如果使用 pnpm,请取消注释
# - uses: oven-sh/setup-bun@v1 # 如果使用 Bun,请取消注释
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache:pnpm
cache: npm #pnpm / yarn
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Install dependencies
run: pnpm install
- name: Build with MapDraw
run: pnpm docs:build
run: npm ci #pnpm install / yarn install / bun install
- name: Build with VitePress
run: npm run docs:build #pnpm docs:build / yarn docs:build / bun run docs:build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
Expand Down

0 comments on commit 2293919

Please sign in to comment.