start.simoncor.net/.drone.yml

33 lines
527 B
YAML
Raw Normal View History

2022-11-01 13:03:03 +01:00
---
kind: 'pipeline'
name: 'build'
2023-03-22 17:22:48 +01:00
type: 'kubernetes'
2022-11-01 13:03:03 +01:00
steps:
# build and publish
- image: 'plugins/docker'
name: 'publish'
pull: 'always'
settings:
# registery and repos
registry: 'docker.io'
repo: 'rakepanorama/start-simoncor-net'
2023-03-22 17:22:48 +01:00
mtu: '1400'
2022-11-01 13:03:03 +01:00
# build stuff
dockerfile: 'Dockerfile.linux.amd64'
daemon_off: 'false'
# authentication
username:
from_secret: 'docker_username'
password:
from_secret: 'docker_password'
# tags
tags:
- 'v1.0'
2022-11-01 13:03:03 +01:00
- 'latest'