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 41df006 commit 4eecc13Copy full SHA for 4eecc13
.github/workflows/latex.yml
@@ -0,0 +1,24 @@
1
+name: Build LaTeX PDF
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+jobs:
8
+ build-pdf:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - name: Checkout repository
13
+ uses: actions/checkout@v4
14
15
+ - name: Compile LaTeX
16
+ uses: xu-cheng/latex-action@v3
17
+ with:
18
+ root_file: main.tex
19
20
+ - name: Upload PDF artifact
21
+ uses: actions/upload-artifact@v4
22
23
+ name: thesis-pdf
24
+ path: main.pdf
0 commit comments