moderncv/.github/workflows/build-pdf.yml
Stephan Lachnit 8c06866dbd
CI: don't update sources
This only takes time and there aren't any relevant updates for us anyway.

Signed-off-by: Stephan Lachnit <stephanlachnit@debian.org>
2021-07-28 12:13:57 +02:00

26 lines
705 B
YAML

name: Build template
on: [push, pull_request]
jobs:
build-template:
name: Build template
runs-on: ubuntu-20.04
steps:
- name: Install TeX Live
run: sudo apt install texlive-full fonts-font-awesome
- 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