mirror of
https://asciireactor.com/otho/industry-cv.git
synced 2024-11-22 18:05:05 +00:00
20 lines
678 B
YAML
20 lines
678 B
YAML
|
version: '3'
|
||
|
|
||
|
silent: true
|
||
|
|
||
|
vars:
|
||
|
compiled_name: cv
|
||
|
|
||
|
tasks:
|
||
|
compile:
|
||
|
# Generating links requires compiling twice.
|
||
|
- docker run --rm -v $PWD:/input/ --workdir /input --name texlive-{{.compiled_name}} texlive/texlive xelatex -jobname {{.compiled_name}} document.tex
|
||
|
- docker run --rm -v $PWD:/input/ --workdir /input --name texlive-{{.compiled_name}} texlive/texlive xelatex -jobname {{.compiled_name}} document.tex
|
||
|
install:
|
||
|
- cp {{.compiled_name}}.pdf othoulrich-cv.pdf
|
||
|
publish:
|
||
|
- task: compile
|
||
|
- task: install
|
||
|
xelatex-help:
|
||
|
- docker run --rm -v $PWD:/input/ --workdir /input --name texlive-{{.compiled_name}} texlive/texlive xelatex --help
|