start.simoncor.net/.drone.yml
Simon Cornet 899b22fd6d
All checks were successful
continuous-integration/drone/push Build is passing
[Global] Removed old links and added v1.0 tag
2022-11-01 18:21:11 +01:00

32 lines
507 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'
repo: 'rakepanorama/start-simoncor-net'
# build stuff
dockerfile: 'Dockerfile.linux.amd64'
daemon_off: 'false'
# authentication
username:
from_secret: 'docker_username'
password:
from_secret: 'docker_password'
# tags
tags:
- 'v1.0'
- 'latest'