-
Notifications
You must be signed in to change notification settings - Fork 0
84 lines (67 loc) · 2.01 KB
/
BuildGitHubPages.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: "Build GitHub Pages"
on: push
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
Build-GitHub-Pages:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Install apt dependencies
run: |
sudo ./install-apt-deps.sh
- uses: actions/setup-node@v4
with:
# Be sure to keep this in sync with .tugboat/config.yml.
node-version: 18
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: |
yarn install
- name: Check spelling
run: |
yarn spellcheck
- name: Build Website
run: |
yarn build
- name: Test
run: |
yarn test
- name: Build PDF
run: |
sudo ./install-calibre.sh
yarn pdf
mv book.pdf _book/security.pdf
rm _book/.gitignore
- name: Archive build results
uses: actions/upload-artifact@v3
with:
name: _book
path: _book
Publish-GitHub-Pages:
runs-on: ubuntu-20.04
needs: [Build-GitHub-Pages]
if: github.ref == 'refs/heads/main'
steps:
- name: Download built book
uses: actions/download-artifact@v3
with:
name: _book
- name: Confirm artifacts
run: ls -R
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: .
exclude_assets: '.github,build.sh,CONTRIBUTING.md,install-calibre.sh,Dockerfile,package.json,yarn.lock,renovate.json,.tugboat,.gitignore'