moderncv/.github/workflows/build-pdf.yml
Mark E Fuller d9ae8b0eef Update build-pdf.yml
attempt to resolve error with TeX Live install buring build
2021-01-04 12:09:19 +01:00

26 lines
689 B
YAML

name: Build template
on: push
jobs:
build-template:
name: Build template
runs-on: ubuntu-20.04
steps:
- name: Install TeX Live
run: sudo apt update && 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