duplicity-backup/.drone.yml
Steph cd5b05eede
All checks were successful
continuous-integration/drone/tag Build is passing
👷 We now have images!
2021-02-08 16:58:14 +01:00

32 lines
582 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: tag (${DRONE_TAG})
image: plugins/docker
settings:
registry: auth.registry.steph.tools
username: drone
password:
from_secret: REGISTRY_PASS
repo: auth.registry.steph.tools/steph/duplicity-backup
auto_tag: true
- name: tag (latest)
image: plugins/docker
settings:
registry: auth.registry.steph.tools
username: drone
password:
from_secret: REGISTRY_PASS
repo: auth.registry.steph.tools/steph/duplicity-backup
tags:
- latest
trigger:
event:
- tag
...