ansible-deployment-container/.drone.yml
Simon Cornet a4ec21f975
All checks were successful
continuous-integration/drone/push Build is passing
[CI] Removed step and added readme file
2022-03-15 14:46:14 +01:00

23 lines
440 B
YAML

---
kind: 'pipeline'
name: 'build'
steps:
# build and publish
- image: 'plugins/docker'
name: 'publish'
pull: 'always'
settings:
cache_from: 'rakepanorama/ansible-deployment'
daemon_off: 'false'
dockerfile: 'Dockerfile.linux.amd64'
repo: 'rakepanorama/ansible-deployment'
username:
from_secret: 'docker_username'
password:
from_secret: 'docker_password'
tags:
- 'latest'
- 'v0.3'