chill_hugoplate/drone.yml

31 lines
584 B
YAML
Raw Normal View History

2024-01-22 14:24:20 +00:00
---
kind: pipeline
type: docker
name: default
trigger:
event:
- tag
steps:
2024-01-22 18:01:53 +00:00
- name: build-hugo
image: ariejan/drone-hugo
settings:
hugo_version: 0.65.3
- name: build-docker-caddy
image: plugins/docker
2024-01-22 14:24:20 +00:00
settings:
registry: h3m6q87t.gra7.container-registry.ovh.net
username:
from_secret: docker_username
password:
from_secret: docker_password
dockerfile: ./Dockerfile
context: ./
2024-01-22 18:01:53 +00:00
repo: h3m6q87t.gra7.container-registry.ovh.net/chill_website
2024-01-22 14:24:20 +00:00
tag: ${DRONE_TAG:=latest}
pull_image: true
---