ansible-deployment-container/.drone.yml
Simon Cornet 8bce4ee2d8
All checks were successful
continuous-integration/drone/push Build is passing
Updated container to ansible-lint version 6.5.0 and yamllint version 1.27.1
2022-08-22 11:25:28 +02:00

32 lines
546 B
YAML

---
kind: 'pipeline'
name: 'build'
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'
# build stuff
dockerfile: 'Dockerfile.linux.amd64'
daemon_off: 'false'
# authentication
username:
from_secret: 'docker_username'
password:
from_secret: 'docker_password'
# tags
tags:
- 'v0.7'
- 'latest'