32 lines
582 B
YAML
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
|
||
|
...
|
||
|
|