25 lines
377 B
YAML
25 lines
377 B
YAML
|
os: linux
|
||
|
dist: bionic
|
||
|
language: shell
|
||
|
addons:
|
||
|
apt:
|
||
|
packages:
|
||
|
- texlive-fonts-recommended
|
||
|
- texlive-latex-extra
|
||
|
- texlive-fonts-extra
|
||
|
- dvipng
|
||
|
- texlive-latex-recommended
|
||
|
- texlive-xetex
|
||
|
before_script:
|
||
|
- cd src
|
||
|
script:
|
||
|
- make
|
||
|
before_deploy:
|
||
|
- cd ..
|
||
|
deploy:
|
||
|
provider: releases
|
||
|
token: $GITHUB_KEY
|
||
|
file:
|
||
|
- pdf/thesis.pdf
|
||
|
skip_cleanup: true
|