21 lines
417 B
YAML
21 lines
417 B
YAML
pipeline:
|
|
libreoffice:
|
|
group: build
|
|
image: jess/libreoffice
|
|
commands:
|
|
- apk add --no-cache make
|
|
- ./compile.sh libreoffice
|
|
|
|
revealjs:
|
|
group: build
|
|
image: python:3-alpine
|
|
commands:
|
|
- apk add --no-cache make
|
|
- pip install -r requirements.txt
|
|
- ./compile.sh revealjs
|
|
|
|
publish:
|
|
group: publish
|
|
image: sbruder/drone-netlify
|
|
secrets: [ "netlify_key" ]
|