duplicity-backup/.drone.yml

32 lines
582 B
YAML
Raw Permalink Normal View History

2021-02-08 16:58:14 +01:00
---
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
...