Trying out Drone CI/CD deployments
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
This commit is contained in:
parent
53dc4dabb4
commit
172d1b384d
21
.drone.yml
21
.drone.yml
|
@ -1,9 +1,20 @@
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: hello-world
|
name: build+push
|
||||||
type: docker
|
type: docker
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
event: push
|
||||||
|
branch: main
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: say-hello
|
- name: docker
|
||||||
image: busybox
|
image: plugins/docker
|
||||||
commands:
|
settings:
|
||||||
- echo hello-world
|
username: derekpaschal
|
||||||
|
password:
|
||||||
|
from_secret: local_container_repo_pass
|
||||||
|
repo: git.paschalplace.com/derekpaschal/nginx-basic-lb
|
||||||
|
tags:
|
||||||
|
- latest
|
||||||
|
pull_image: true
|
||||||
|
platform: linux/amd64,linux/arm64
|
||||||
|
|
Loading…
Reference in New Issue