14 lines
248 B
YAML
14 lines
248 B
YAML
|
image: luki42/latex-full:latest
|
||
|
|
||
|
stages:
|
||
|
- build
|
||
|
|
||
|
build:
|
||
|
stage: build
|
||
|
script:
|
||
|
- cd presentation
|
||
|
- latexmk -xelatex -file-line-error -interaction=nonstopmode -halt-on-error main.tex
|
||
|
artifacts:
|
||
|
paths:
|
||
|
- "presentation/*.pdf"
|