This repository has been archived on 2023-02-09. You can view files and clone it, but cannot push or open issues or pull requests.
drone-ansible-runner/.drone.yml
SebClem 7e5b1d89da
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing
🔨 Add cache image
2022-04-26 11:58:13 +02:00

57 lines
1.2 KiB
YAML

name: Build Docker
kind: pipeline
type: docker
steps:
- name: Only build image
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
repo: harbor.sebclem.fr/sebclem/drone-ansible-runner
cache_from: harbor.sebclem.fr/sebclem/drone-ansible-runner
registry: harbor.sebclem.fr
tags: latest
dry_run: true
when:
target:
exclude:
- production
- name: Build and Push docker
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
repo: harbor.sebclem.fr/sebclem/drone-ansible-runner
cache_from: harbor.sebclem.fr/sebclem/drone-ansible-runner
registry: harbor.sebclem.fr
tags: latest
when:
target:
- production
- name: Notify
image: drillster/drone-email
settings:
host:
from_secret: mail_host
username:
from_secret: mail_username
password:
from_secret: mail_password
from:
from_secret: mail_from
when:
status: [ changed, failure ]
trigger:
event:
- push
- custom
- promote
- rollback