Simon Bruder
2efda45f9c
All checks were successful
continuous-integration/drone/push Build is passing
33 lines
634 B
YAML
33 lines
634 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: submodules
|
|
image: docker:git
|
|
commands:
|
|
- git submodule init
|
|
- git submodule update --recursive --remote
|
|
|
|
- name: libreoffice
|
|
image: jess/libreoffice
|
|
commands:
|
|
- apk add --no-cache make
|
|
- ./compile.sh libreoffice
|
|
|
|
- name: revealjs
|
|
image: python:3-alpine
|
|
commands:
|
|
- apk add --no-cache make
|
|
- pip install pipenv
|
|
- pipenv install --system
|
|
- ./compile.sh revealjs
|
|
|
|
- name: publish
|
|
image: sbruder/drone-netlify
|
|
settings:
|
|
key:
|
|
from_secret: netlify_key
|
|
when:
|
|
branch:
|
|
- master
|