webseite/.drone.yml
Henning Brinkmann 4eb294a8b1
All checks were successful
continuous-integration/drone/push Build is passing
build and deploy in one step again
2021-06-07 01:25:13 +02:00

28 lines
444 B
YAML

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