28 lines
538 B
YAML
28 lines
538 B
YAML
pipeline:
|
|
inkscape:
|
|
image: jess/inkscape
|
|
commands:
|
|
- apt-get update && apt-get -y install make
|
|
- ./compile.sh inkscape
|
|
|
|
latex:
|
|
image: tianon/latex
|
|
commands:
|
|
- apt-get update && apt-get -y install wget
|
|
- ./compile.sh latex
|
|
|
|
libreoffice:
|
|
image: jess/libreoffice
|
|
commands:
|
|
- apk add --no-cache make
|
|
- ./compile.sh libreoffice
|
|
|
|
revealjs:
|
|
image: node
|
|
commands:
|
|
- ./compile.sh revealjs
|
|
|
|
publish:
|
|
image: sbruder/drone-netlify
|
|
secrets: [ "netlify_key" ]
|