prez-concepts-chill/.drone.yml

36 lines
904 B
YAML
Raw Permalink 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/
2022-12-13 09:34:42 +00:00
repo: h3m6q87t.gra7.container-registry.ovh.net/prez-concept-chill/presentation
2022-05-16 07:43:50 +00:00
tag: ${DRONE_TAG:=latest}
2022-05-11 08:52:07 +00:00
pull_image: true
2022-12-13 09:34:42 +00:00
when:
event:
- tag
2022-05-11 08:52:07 +00:00
---
kind: signature
2022-12-13 09:54:27 +00:00
hmac: 94e0deac2fd11cf7bd57e9c0bbc11c84f43c4254f7a583ae403b109bf8a0e5b0
2022-05-11 08:52:07 +00:00
...