mirror of
https://github.com/sstent/containers.git
synced 2025-12-06 08:01:51 +00:00
30 lines
489 B
YAML
30 lines
489 B
YAML
---
|
|
clone:
|
|
git:
|
|
image: plugins/git
|
|
when:
|
|
path: 'rsync/*'
|
|
|
|
pipeline:
|
|
publish_rsync:
|
|
image: plugins/docker
|
|
repo: registry.service.dc1.consul:5000/rsync
|
|
registry: registry.service.dc1.consul:5000
|
|
insecure: true
|
|
context: rsync/
|
|
dockerfile: rsync/Dockerfile
|
|
purge: false
|
|
tags:
|
|
- ${RELEASE}
|
|
- latest
|
|
build_args:
|
|
- RELEASE=${RELEASE}
|
|
when:
|
|
path: 'rsync/*'
|
|
|
|
matrix:
|
|
RELEASE:
|
|
- v0.4.0-alpha.3
|
|
- v0.3.5
|
|
...
|