prez-concepts-chill/.drone.yml

32 lines
857 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: build-presentation
image: pandoc/minimal:2.18-alpine
commands:
- pandoc -t revealjs --resource-path=.:presentation/src/ -s presentation/src/index.md -o presentation/src/index.html
- name: build-docker-caddy
image: plugins/docker
settings:
registry: h3m6q87t.gra7.container-registry.ovh.net
username:
from_secret: docker_username
password:
from_secret: docker_password
dockerfile: presentation/Dockerfile
context: presentation/
repo: h3m6q87t.gra7.container-registry.ovh.net/vendeeformation/presentation
tag: ${DRONE_TAG:=latest}
pull_image: true
---
kind: signature
hmac: c0ad5b01b207a1d51771b51295f60b0a64ded443c8321765fbf7226f09857fd3
...