-
-
Notifications
You must be signed in to change notification settings - Fork 93
129 lines (110 loc) · 3.34 KB
/
build-and-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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
name: Build and deploy an updated version of the website
on:
push:
paths-ignore:
- 'historical/**'
- 'mediawiki-exporter/**'
- 'README.md'
- 'LICENSE'
pull_request:
paths-ignore:
- 'historical/**'
- 'mediawiki-exporter/**'
- 'README.md'
- 'LICENSE'
schedule:
- cron: '42 16 1/7 * *'
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
env:
MDBOOK_LINKCHECK_VER: 0.7.7
jobs:
build:
name: Build Pan Docs
runs-on: ubuntu-latest
steps:
- name: Checkout pandocs
uses: actions/checkout@v4
with:
path: pandocs
- name: Cache Rust build dir
uses: Swatinem/rust-cache@v2
with:
workspaces: pandocs/target/
- name: Install mdbook
uses: peaceiris/actions-mdbook@v2
with:
mdbook-version: 0.4.40
- name: Install static-sitemap-cli
run: npm install static-sitemap-cli
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r pandocs/requirements.txt
- name: Build
working-directory: pandocs/
env:
MDBOOK_BUILD__CREATE_MISSING: "false" # Prevent creating missing files in SUMMARY.md
run: |
mdbook build
- name: Generate sitemap
run: |
cd pandocs/docs/pandocs/
npx sscli --no-clean --base https://gbdev.io/pandocs
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: pandocs/docs/pandocs/
linkcheck:
name: Check for dead links
runs-on: ubuntu-latest
steps:
- name: Checkout pandocs
uses: actions/checkout@v4
with:
path: pandocs
- name: Cache Rust build dir
uses: Swatinem/rust-cache@v2
with:
workspaces: pandocs/target/
- name: Install mdbook
uses: peaceiris/actions-mdbook@v2
with:
mdbook-version: 0.4.40
# FIXME: Keep this up to date
- name: Install mdbook-linkcheck
run: | # `-L` because GitHub performs a redirection
curl -L -o mdbook-linkcheck.zip "https://github.com/Michael-F-Bryan/mdbook-linkcheck/releases/download/v${MDBOOK_LINKCHECK_VER}/mdbook-linkcheck.x86_64-unknown-linux-gnu.zip"
unzip mdbook-linkcheck.zip mdbook-linkcheck
chmod +x mdbook-linkcheck
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r pandocs/requirements.txt
- name: Check links
working-directory: pandocs/
env:
MDBOOK_OUTPUT__LINKCHECK__COMMAND: "../mdbook-linkcheck"
run: |
mdbook build
deploy:
name: Deploy to GitHub pages
# Do not run this unless *pushing* to `master`.
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2