scel/.drone.yml
kjuulh 92ce57dc60
All checks were successful
continuous-integration/drone/push Build is passing
With auto_tag
2022-07-18 13:31:50 +02:00

33 lines
652 B
YAML

kind: pipeline
name: default
type: docker
steps:
- name: server
image: plugins/docker
environment:
DOCKER_BUILDKIT: 1
settings:
username: kasperhermansen
password:
from_secret:
docker_secret
repo: kasperhermansen/scel
tags: latest
context: .
dockerfile: Dockerfile
cache_from: kasperhermansen/scel:latest
auto_tag: true
- name: send telegram notification
image: appleboy/drone-telegram
settings:
token:
from_secret: telegram_token
to: 2129601481
format: markdown
depends_on:
- server
when:
status: [failure]