We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 141841d + 2b1b118 commit 11b3bb1Copy full SHA for 11b3bb1
.github/workflows/generate-pdfs.yml
@@ -0,0 +1,35 @@
1
+---
2
+name: Mkdocs build PDFs
3
+
4
+on:
5
+ push:
6
+ branches:
7
+ - main
8
+ schedule:
9
+ - cron: '0 12 1 * *'
10
+ workflow_dispatch:
11
12
+jobs:
13
+ build_pdfs:
14
+ runs-on: ubuntu-latest
15
+ name: Build PDFs
16
+ steps:
17
+ - uses: actions/checkout@v3
18
19
+ - uses: actions/setup-python@v4
20
+ with:
21
+ python-version: "3.9"
22
23
+ - name: Install dependencies
24
+ run: |
25
+ python -m pip install --upgrade pip
26
+ python -m pip install -r ${PWD}/build_pdf/requirements.txt
27
28
+ - name: Build all
29
+ run: ${PWD}/build_pdf/build_all.sh
30
31
+ - name: Upload artifacts
32
+ uses: actions/upload-artifact@v3
33
34
+ name: pdfs
35
+ path: build_pdf/pdf/*
build_pdf/build_all.sh
100644
100755
0 commit comments