From 172d1b384d351e6e737ad321122dc639af6ad082 Mon Sep 17 00:00:00 2001 From: Derek Paschal Date: Mon, 19 Jun 2023 12:04:31 -0500 Subject: [PATCH] Trying out Drone CI/CD deployments --- .drone.yml | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/.drone.yml b/.drone.yml index f18376a..0fa8f57 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,9 +1,20 @@ kind: pipeline -name: hello-world +name: build+push type: docker +trigger: + event: push + branch: main + steps: - - name: say-hello - image: busybox - commands: - - echo hello-world \ No newline at end of file + - name: docker + image: plugins/docker + settings: + 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