Adding drone CI/CD to repo
This commit is contained in:
parent
eccfd27370
commit
0612280d02
|
@ -0,0 +1,27 @@
|
||||||
|
kind: pipeline
|
||||||
|
name: build+push
|
||||||
|
type: docker
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
include:
|
||||||
|
- push
|
||||||
|
- cron
|
||||||
|
branch:
|
||||||
|
- main
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: docker-build
|
||||||
|
image: thegeeklab/drone-docker-buildx
|
||||||
|
privileged: true
|
||||||
|
settings:
|
||||||
|
username: derekpaschal
|
||||||
|
password:
|
||||||
|
from_secret: local_container_repo_pass
|
||||||
|
registry: git.paschalplace.com
|
||||||
|
repo: git.paschalplace.com/derekpaschal/auto-sd-docker
|
||||||
|
tags:
|
||||||
|
- latest
|
||||||
|
pull_image: true
|
||||||
|
platforms:
|
||||||
|
- linux/amd64
|
||||||
|
no_cache: true
|
Loading…
Reference in New Issue