prez-concepts-chill/.drone.yml

32 lines
843 B
YAML
Raw Normal View History

2022-05-11 08:52:07 +00:00
---
kind: pipeline
type: docker
name: default
steps:
- name: build-presentation
image: pandoc/minimal:2.18-alpine
commands:
2022-05-11 09:45:35 +00:00
- pandoc -t revealjs --resource-path=.:presentation/src/ -s presentation/src/index.md -o presentation/src/index.html
2022-05-11 08:52:07 +00:00
- name: build-docker-caddy
image: plugins/docker
settings:
2022-05-11 09:31:33 +00:00
registry: h3m6q87t.gra7.container-registry.ovh.net
username:
from_secret: docker_username
password:
from_secret: docker_password
2022-05-11 08:52:07 +00:00
dockerfile: presentation/Dockerfile
context: presentation/
repo: h3m6q87t.gra7.container-registry.ovh.net/vendeeformation/presentation
tag: latest
pull_image: true
---
kind: signature
2022-05-11 09:45:35 +00:00
hmac: ca2054cde401e1c130c6baa178f07ba1d675e257c54274037a2129c800a81c6f
2022-05-11 08:52:07 +00:00
...