34 lines
681 B
YAML
34 lines
681 B
YAML
|
kind: pipeline
|
||
|
name: default
|
||
|
|
||
|
steps:
|
||
|
- name: build
|
||
|
image: plugins/docker:linux-amd64
|
||
|
pull: always
|
||
|
settings:
|
||
|
daemon_off: false
|
||
|
dry_run: true
|
||
|
repo: docker.asperti.com/paspo/ftps
|
||
|
tags:
|
||
|
- latest
|
||
|
when:
|
||
|
event:
|
||
|
exclude:
|
||
|
- tag
|
||
|
|
||
|
- name: build_and_publish
|
||
|
image: plugins/docker:linux-amd64
|
||
|
pull: always
|
||
|
settings:
|
||
|
daemon_off: false
|
||
|
password:
|
||
|
from_secret: docker_password
|
||
|
registry: docker.asperti.com
|
||
|
repo: docker.asperti.com/paspo/ftps
|
||
|
tags:
|
||
|
- latest
|
||
|
username:
|
||
|
from_secret: docker_username
|
||
|
when:
|
||
|
event:
|
||
|
- tag
|