-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (42 loc) · 1 KB
/
ghpage-deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Deploy VitePress site to Pages
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 安装 pnpm
uses: pnpm/action-setup@v2
with:
run_install: true
version: 8
- name: Setup Node.js
run: |-
pnpm install
- name: Build with VitePress
env:
NODE_OPTIONS: --max_old_space_size=8192
run: |-
pnpm run docs:build
> .vitepress/dist/.nojekyll
- name: Deploy to Vercel
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: pages
folder: .vitepress/dist
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: pages
folder: .vitepress/dist