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.
1 parent 7696e8a commit de287abCopy full SHA for de287ab
.github/workflows/CI.yml
@@ -0,0 +1,25 @@
1
+name: Build Terminology PDF
2
+on:
3
+ pull_request:
4
+ push:
5
+ branches:
6
+ - main
7
+ tags: '*'
8
+ workflow_dispatch:
9
+jobs:
10
+ build_latex:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Set up Git repository
14
+ uses: actions/checkout@v2
15
+ - name: Compile LaTeX document
16
+ uses: xu-cheng/texlive-action/full@v1
17
+ with:
18
+ run: |
19
+ cd doc/terminology
20
+ latexmk -pdf -shell-escape terminology.tex
21
+ - name: Upload Artifact
22
+ uses: actions/upload-artifact@v2
23
24
+ name: PDF
25
+ path: doc/terminology/terminology.pdf
0 commit comments