27 lines
576 B
YAML
27 lines
576 B
YAML
name: Build PDF's
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build_pdf:
|
|
name: Build PDF's
|
|
runs-on: docker
|
|
|
|
steps:
|
|
- name: Set up Git repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Build English PDF
|
|
uses: https://github.com/xu-cheng/latex-action@v3
|
|
with:
|
|
root_file: marko_korhonen_cv_fi.tex
|
|
latexmk_use_xelatex: true
|
|
|
|
- name: Build Finnish PDF
|
|
uses: https://github.com/xu-cheng/latex-action@v3
|
|
with:
|
|
root_file: marko_korhonen_cv_fi.tex
|
|
latexmk_use_xelatex: true
|