tinyproxy/.drone.yml
Aleksander Cynarski b5011fb187
All checks were successful
continuous-integration/drone/push Build is passing
tinyproxy 1.11.0-rc1
2021-03-28 20:34:28 +02:00

36 lines
737 B
YAML

kind: pipeline
name: default
steps:
- name: docker
image: plugins/docker
settings:
username:
from_secret: hub_username
password:
from_secret: hub_password
repo:
from_secret: hub_repo
tags: latest
when:
branch:
- master
- name: notify
image: appleboy/drone-telegram
settings:
token:
from_secret: telegram_bot_token
to:
from_secret: telegram_group_id
message: >
{{#success build.status}}
SUCCESSED! build {{build.link}} triggerd by {{commit.link}} from {{commit.author}}
{{else}}
FAILED! build {{build.link}} triggerd by {{commit.link}} from {{commit.author}}
{{/success}}
when:
status:
- success
- failure