-
Notifications
You must be signed in to change notification settings - Fork 0
237 lines (199 loc) · 6.07 KB
/
build-and-deploy-manual.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
name: Build & deploy Manual to GitHub Pages
on:
workflow_dispatch:
push:
branches:
- main
env:
#nf-archives: '["UbuntuSans", "SpaceMono"]'
nf-archives: '["UbuntuSans"]'
nf-version: v3.2.1
nf-default: UbuntuSans
jobs:
# Generate NerdFont fonts matrix ##
nf-gen-matrix:
name: Generate NerdFont matrix
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.nf-gen-matrix.outputs.matrix }}
steps:
- name: Set matrix
id: nf-gen-matrix
run: |
echo matrix=${{ toJSON('["SpaceMono", "UbuntuSans"]') }} >> $GITHUB_OUTPUT
## Ensure the nf-web artifact exists or the font jobs fail ##
nf-create-artifact:
name: Create NerdFonts artifact
runs-on: ubuntu-latest
permissions: write-all
needs:
- nf-gen-matrix
steps:
- uses: actions/checkout@v4
with:
sparse-checkout: |
docs/assets/fonts/
- name: Create Fonts artifact
run: echo "Creating nf-web artifact"
- name: Add placeholder so artifact exists
run: |
cd docs/assets/fonts/
echo "tmp" > .exists
- uses: actions/upload-artifact@v4
id: nf-create-artifact
with:
name: nf-web
path: docs/assets/fonts/
retention-days: 1
## Fetch/process/cache fonts ##
get_fonts:
name: Fetch & Process NerdFonts
needs:
- nf-gen-matrix
- nf-create-artifact
runs-on: ubuntu-latest
strategy:
matrix:
archive: ${{ fromJSON(needs.nf-gen-matrix.outputs.matrix) }}
max-parallel: 1
steps:
- name: debug output matrix.archive
run: |
echo " -- Matrix archive:"
echo ${{ matrix.archive }}
- uses: actions/download-artifact@v4
with:
name: nf-web
path: docs/assets/fonts/
merge-multiple: true
- uses: actions/cache@v4
id: cache
with:
path: |
"data/assets/fonts/${{ matrix.archive }}NerdFont"
${{ matrix.archive == env.nf-default && 'docs/assets/fonts/default-font.css' || '/dev/null' }}
key: "${{ matrix.archive }}-${{ env.nf-version }}"
- name: Checkout processing script
if: steps.cache.outputs.cache-hit != 'true'
uses: actions/checkout@v4
with:
sparse-checkout: |
docs/scripts/nerdfontweb.py
docs/assets/fonts/
- name: Setup Python
if: steps.cache.outputs.cache-hit != 'true'
uses: actions/[email protected]
with:
python-version: '3.12'
cache: 'pip'
- name: Download, unpack, and process NerdFonts
if: steps.cache.outputs.cache-hit != 'true'
id: process_fonts
#with:
#env:
#archive: ${{ matrix.archive }} == ${{ env.nf-default }} && '--gen-default' || '' }}
#env:
# ${{ if eq(archive, env.nf-default) }}:font: default
run: |
default="${{ env.nf-default == matrix.archive && '--gen-default' || '' }}"
python docs/scripts/nerdfontweb.py --version ${{ env.nf-version}} ${default} --mkdocs ${{ matrix.archive }}
- uses: actions/upload-artifact@v4
with:
name: nf-web
path: docs/assets/fonts/
overwrite: true
retention-days: 1
## Compile SASS ##
compile_sass:
name: Compile SASS
runs-on: ubuntu-latest
steps:
- name: Checkout SASS files
uses: actions/checkout@v4
with:
sparse-checkout: |
docs/assets/stylesheets/
- name: Install sassc
run: sudo apt-get install -y sassc
- name: Compile SASS
run: |
for file in docs/assets/stylesheets/*.sass; do
sassc --sass $file ${file%.sass}.compiled.css
done
- name: Upload compiled CSS
uses: actions/upload-artifact@v4
with:
name: compiled-css
path: docs/assets/stylesheets/*.compiled.css
retention-days: 1
## Build job ##
build:
name: Build manual pages
needs:
- get_fonts
- compile_sass
runs-on: ubuntu-latest
steps:
- name: Configure GitHub Pages
uses: actions/configure-pages@v5
- name: Checkout main
uses: actions/checkout@v4
with:
sparse-checkout: |
.github
docs
- uses: actions/download-artifact@v4
with:
name: nf-web
path: docs/assets/fonts/
- uses: actions/download-artifact@v4
with:
name: compiled-css
path: docs/assets/stylesheets/
- name: Setup Python
uses: actions/[email protected]
with:
python-version: '3.12'
cache: 'pip'
- name: Install python modules
run: pip install -r docs/requirements.txt
- name: Generate site files
run: mkdocs build
- name: Upload GitHub Pages artifact
uses: actions/[email protected]
with:
path: "site/"
## Deploy job ##
deploy:
name: Deploy manual pages
needs: build
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
# Specify runner + deployment step
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/[email protected]
## Clear artifact as necessary
nf-clear-artifact:
name: Clear NerdFonts artifact
runs-on: ubuntu-latest
needs: deploy
steps:
- name: Clear Fonts artifact
run: echo "Clearing nf-web artifact in case it exists from previous run"
- uses: geekyeggo/delete-artifact@v5
with:
name: nf-web
- name: Clear CSS artifact
run: echo "Clearing compiled-css artifact in case it exists from previous run"
- uses: geekyeggo/delete-artifact@v5
with:
name: compiled-css