-
Notifications
You must be signed in to change notification settings - Fork 7
56 lines (43 loc) · 1.22 KB
/
gh-pages.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
52
53
54
55
56
name: gh-pages
on:
push:
branches:
- master
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
env:
DOCS_GA_ID: G-CTB8FQ7VMW
NODE_VERSION: '16'
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install ttf-mscorefonts
run: sudo apt-get install ttf-mscorefonts-installer
- name: Install fontconfig
run: sudo apt-get install fontconfig
- name: Install Fonts
run: sudo cp -r fonts/ /usr/share/fonts && sudo mkfontscale && sudo mkfontdir && sudo fc-cache -fv
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 8
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install dependencies
run: pnpm install
- name: Build documentation site
run: pnpm build
- name: Create CNAME
run: cd dist && echo "resume.yuexiaoliang.com" > CNAME
- name: Deploy to GitHub Pages
uses: crazy-max/[email protected]
with:
target_branch: gh-pages
build_dir: dist
env:
GH_PAT: ${{ secrets.ACTION_TOKEN }}