ansible-deployment-container/.drone.yml
Simon Cornet 65222ff619
Some checks reported errors
continuous-integration/drone/push Build was killed
[DRONE] Added buildargs
2022-10-07 12:23:28 +02:00

37 lines
619 B
YAML

---
kind: 'pipeline'
name: 'build'
type: 'kubernetes'
steps:
# build and publish
- image: 'plugins/docker'
name: 'publish'
pull: 'always'
privileged: true
settings:
# registery and repos
registry: 'docker.io'
cache_from: 'rakepanorama/ansible-deployment'
repo: 'rakepanorama/ansible-deployment'
build_args: '--network host'
# build stuff
dockerfile: 'Dockerfile.linux.amd64'
daemon_off: 'false'
# authentication
username:
from_secret: 'docker_username'
password:
from_secret: 'docker_password'
# tags
tags:
- 'v0.9'
- 'latest'