webseite/.drone.yml
Henning Brinkmann 11088b56b1
Some checks failed
continuous-integration/drone/push Build is failing
correct when clause of step "deploy" to match branch "main"
2021-06-06 23:04:53 +02:00

27 lines
443 B
YAML

---
kind: pipeline
type: docker
name: build_webseite
workspace:
path: /workspace
steps:
- name: build
image: registry.wtf-eg.net/lektor
- name: deploy
image: registry.wtf-eg.net/lektor
environment:
LEKTOR_DEPLOY_KEY:
from_secret: lektor_deploy_key
commands:
- deploy --key ${LEKTOR_DEPLOY_KEY}
when:
branch:
- main
event:
- push
image_pull_secrets:
- dockerconfig