From 5cc47c58e8a83a80442bf8456d54c4d790d9cb06 Mon Sep 17 00:00:00 2001 From: djweber12 Date: Mon, 5 Feb 2024 22:57:36 -0500 Subject: [PATCH] Adding drone yml --- .drone.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..45ee432 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,15 @@ +kind: pipeline +type: docker +name: hello-world + +trigger: + branch: + - master + event: + - push + +steps: + - name: say-hello + image: busybox + commands: + - echo hello-world \ No newline at end of file