This repository has been archived on 2022-03-27. You can view files and clone it, but cannot push or open issues/pull-requests.
presis/.drone.yml

35 lines
680 B
YAML
Raw Normal View History

2019-03-23 21:33:31 +01:00
kind: pipeline
name: default
steps:
- name: submodules
image: docker:git
commands:
- git submodule init
2019-03-23 21:33:31 +01:00
- git submodule update --recursive --remote
- name: libreoffice
2018-04-28 14:27:08 +02:00
image: jess/libreoffice
2018-04-12 18:38:04 +02:00
commands:
2018-04-28 14:27:08 +02:00
- apk add --no-cache make
2018-04-12 18:38:04 +02:00
- ./compile.sh libreoffice
2019-03-23 21:33:31 +01:00
- name: revealjs
image: python:3-alpine
2018-06-01 20:45:54 +02:00
commands:
2018-06-10 12:45:46 +02:00
- apk add --no-cache make
2020-05-05 14:41:40 +02:00
- pip install pipenv
- pipenv install --system
2018-04-12 18:38:04 +02:00
- ./compile.sh revealjs
2018-04-28 14:27:08 +02:00
2019-03-23 21:33:31 +01:00
- name: publish
2020-08-04 00:51:58 +02:00
image: r.sbruder.de/drone-netlify
2019-03-23 21:33:31 +01:00
settings:
2020-08-04 00:51:58 +02:00
auth_token:
from_secret: netlify_auth_token
dir: .
prod: 1
2019-03-23 21:33:31 +01:00
when:
branch:
- master