LAAG1/.travis.yml

17 lines
430 B
YAML
Raw Normal View History

2017-11-19 21:06:42 +01:00
sudo: required
dist: trusty
2017-10-24 15:30:03 +02:00
before_install:
2017-11-19 21:38:50 +01:00
- sudo apt-get -qq update && sudo apt-get install -y --no-install-recommends texlive-full texlive-lang-german texlive-generic-recommended
2017-10-24 15:30:03 +02:00
script:
2017-11-19 21:06:42 +01:00
- mkdir _build
2017-11-19 21:11:06 +01:00
- pdflatex -interaction=nonstopmode -output-directory _build Lineare_Algebra.tex
2017-11-19 21:06:42 +01:00
deploy:
provider: releases
api_key:
secure: [YOUR KEY]
file:
- _build/Lineare_Algebra.pdf
skip_cleanup: true
on:
tags: true