ansible-deployment-container/.drone.yml
Simon Cornet e8ff4247d6
All checks were successful
continuous-integration/drone/push Build is passing
[v16] Upgraded ansible-lint to version 6.14.0
2023-03-03 14:07:37 +01:00

33 lines
556 B
YAML

---
kind: 'pipeline'
name: 'build'
type: 'docker'
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:
- 'v16'
- 'latest'