-
Notifications
You must be signed in to change notification settings - Fork 404
43 lines (35 loc) · 973 Bytes
/
build.yml
File metadata and controls
43 lines (35 loc) · 973 Bytes
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
name: Deploy VitePress
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 22
- name: Install pnpm
uses: pnpm/action-setup@v5
with:
version: latest
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build documentation site
run: pnpm run docs:build
- name: Deploy to GitHub Pages
if: github.event_name != 'pull_request'
uses: peaceiris/actions-gh-pages@v4
with:
personal_token: ${{ secrets.ACTION_PERSONAL_TOKEN }}
publish_dir: .vitepress/dist
external_repository: XTLS/XTLS.github.io
publish_branch: gh-pages-next
force_orphan: true