From bb0242b1fdf0d130eb146481e45f022596f75735 Mon Sep 17 00:00:00 2001 From: Tyler Perkins Date: Fri, 22 Sep 2023 17:56:08 -0400 Subject: [PATCH] Actually add drone.yml --- .drone.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..180a6d8 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,32 @@ +kind: pipeline +name: default + +steps: + - name: docker + image: plugins/docker + settings: + registry: git.clortox.com + username: + from_secret: gitea_docker_username + password: + from_secret: gitea_docker_password + repo: git.clortox.com/tyler/General-API + tags: latest + when: + branch: + - master + - name: notify + image: clortox/drone-ntfy + settings: + URL: https://ntfy.clortox.com + USERNAME: drone + PASSWORD: + from_secret: ntfy_password + TOPIC: drone-builds + MESSAGE: General-API has compiled! + CLICK: https://drone.clortox.com/tyler/General-API + TITLE: General-API + when: + branch: + - master +