moderncv/.github/workflows/build-pdf.yml
Stephan Lachnit 955e7db3cb
fixup
2020-10-20 16:39:17 +02:00

26 lines
671 B
YAML

name: Build template
on: push
jobs:
build-template:
name: Build template
runs-on: ubuntu-latest
steps:
- name: Install TeX Live
run: sudo apt install texlive-full
- name: Checkout code
uses: actions/checkout@v2
- name: Build pdf
run: latexmk -pdflua ./template.tex
- name: Scan log
run: texloganalyser -w ./template.log
- name: Upload pdf
uses: actions/upload-artifact@v2
with:
name: template.pdf
path: ./template.pdf
- name: Upload log
uses: actions/upload-artifact@v2
with:
name: template.log
path: ./template.log