ansible-deployment-container/.drone.yml
Simon Cornet eb04c8d824
Some checks failed
continuous-integration/drone/push Build is failing
[DRONE] Rewrite build and publish CI
2022-10-07 13:34:37 +02:00

37 lines
657 B
YAML

---
kind: 'pipeline'
name: 'build'
type: 'kubernetes'
steps:
# build and publish
- image: 'plugins/docker'
name: 'publish'
pull: 'always'
settings:
# registery and repos
registry: 'docker.io'
cache_from: 'rakepanorama/ansible-deployment'
repo: 'rakepanorama/ansible-deployment'
custom_dns: '10.43.0.10'
build_args: '--network host'
bip: true
debug: true
# 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'