blob: a4aed36889ee1995c14ef30273fedc8d3a680fff (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# use docker image with latex preinstalled
# since there is no official latex image, use https://github.com/blang/latex-docker
# possible alternative: https://github.com/natlownes/docker-latex
image: blang/latex
build:
script:
- latexmk -pdf
artifacts:
paths:
- "*.pdf"
|