blocks into modulelist #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Build LaTeX Thesis" | |
on: [push] | |
permissions: | |
contents: write | |
jobs: | |
# anything in the job "tex" is executed on the same runner | |
tex: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup | |
uses: actions/checkout@v3 | |
- name: Compile TeX doc | |
uses: xu-cheng/latex-action@v3 | |
with: | |
working_directory: thesis/ | |
root_file: main.tex | |
- name: Upload PDF | |
uses: actions/upload-artifact@v3 | |
with: | |
name: PDF | |
path: thesis/main.pdf |