ansible-deployment-container/.drone.yml
Simon Cornet e09bcea275
Some checks failed
continuous-integration/drone/push Build is failing
[v0.11] Upgraded ansible-lint to version 6.9.0
2022-12-05 06:21:11 +01:00

33 lines
572 B
YAML

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