hackerspace-blueprint/.travis.yml

29 lines
1.3 KiB
YAML
Raw Permalink Normal View History

2019-03-25 21:30:05 +00:00
language: r
2018-07-29 15:42:36 +00:00
addons:
apt:
packages:
- poppler-utils
install: tlmgr install mdframed mweights needspace sourcecodepro sourcesanspro collection-fontsextra pdfjam
2018-07-29 15:38:14 +00:00
script: |
2019-03-19 21:07:31 +00:00
# Generate epub
2019-04-22 14:37:11 +00:00
pandoc --verbose pandoc-metadata.yaml README.md [0-9]*.md -o hackerspace-blueprint.epub --metadata date="`date --iso-8601=date`" --toc-depth=2 --epub-embed-font='epub-fonts/*.ttf' --css=epub.css
2019-03-19 21:07:31 +00:00
# Generate PDF
2019-04-22 14:37:11 +00:00
pandoc --verbose pandoc-metadata.yaml README.md [0-9]*.md -o hackerspace-blueprint.pdf --metadata date="`date --iso-8601=date`" --template eisvogel.tex --include-before-body=include-cover.tex --include-after-body=include-back.tex
2019-03-19 21:07:31 +00:00
# Generate booklet
2019-03-25 21:20:32 +00:00
numpages=$(pdfinfo hackerspace-blueprint.pdf | awk '/^Pages/ { print $2}')
pdfbook hackerspace-blueprint.pdf 2-$(($numpages-2)) -o hackerspace-blueprint-booklet-body.pdf
2018-05-26 21:00:25 +00:00
deploy:
provider: releases
api_key:
secure: cIRIKuDWejK79Kojh2URkQBmQcKDJtH/MmrzgCySQ7ArjbZ6/cPkS014QbNmUft4GiRGZzIiulfkkvLtdT4UVGVXEw7gTK/V5b6bEci6fst4rDPL/hCDeXcLutOxcOwb7vei38V5XhE+1D2UcFQFNJFkeo60WKWR9ybIQ7pAemo=
2018-07-29 15:38:14 +00:00
file:
2019-03-25 21:20:32 +00:00
- hackerspace-blueprint.epub
- hackerspace-blueprint.pdf
- hackerspace-blueprint-booklet-cover.pdf
- hackerspace-blueprint-booklet-body.pdf
2018-05-26 21:00:25 +00:00
skip_cleanup: true
2018-05-26 22:52:35 +00:00
on:
2019-03-25 21:30:05 +00:00
repo: "0x20/hackerspace-blueprint"
2018-05-26 22:52:35 +00:00
if:
2019-03-19 21:07:31 +00:00
tag IS blank