Merge pull request #116 from john-floren-gravwell/docker-cleanup #29
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
on: | |
push: | |
branches: | |
- 'main' | |
tags: | |
- 'v*' | |
jobs: | |
training-pdf-builder: | |
runs-on: ubuntu-latest | |
name: Build the training PDF | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: antaljanosbenjamin/compile-latex@v1.0.0 | |
with: | |
file: master.tex | |
args: -pdf -pdflatex="pdflatex -interaction=nonstopmode" -use-make | |
- run: '(test -f master.pdf && echo PDF exists) || (echo PDF does not exist && exit 1)' |