Latex template for p-report
# only for ubuntu 12.04
$ sudo apt-add-repository ppa:texlive-backports/ppa
$ sudo apt-get update
$ sudo apt-get install lsb-release
$ make
-
Install Travis Command Line Tool
-
Enable Travis
travis enable travis setup releases --force
- After `travis` command, configuration like below will be appended to `.travis.yml`.
```yaml
deploy:
provider: releases
api_key: "GITHUB OAUTH TOKEN"
file: p-report.pdf
skip_cleanup: true
on:
tags: true
NOTE Please make sure you have skip_cleanup
and on: tags
is true
- Push your tag by
git push --tags
. Then you can watch pdf in github releases.
$ make clean
# or
$ make wipe