From 66900162c56049c7c6a526e127bab5f1bbf1a64e Mon Sep 17 00:00:00 2001 From: Ammar Hussein Date: Thu, 31 Jul 2025 21:40:50 -0700 Subject: [PATCH] add .drone.yml --- .drone.yml | 24 ++++++++++++++++++++++++ .gitignore | 5 ++++- 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..2d66270 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,24 @@ +--- +kind: pipeline +name: default + +steps: +- name: build and publish docker image + image: plugins/docker + settings: + repo: git.coopcloud.tech/rtm/rtmwebsite + tags: + - main + - latest + - 0.0.2 + platform: linux/amd64 + username: + from_secret: USERNAME + password: + from_secret: PASSWORD + registry: git.coopcloud.tech +trigger: + branch: + - main + event: + - push diff --git a/.gitignore b/.gitignore index f508ef0..5bce68d 100644 --- a/.gitignore +++ b/.gitignore @@ -24,4 +24,7 @@ pnpm-debug.log* .idea/ # Emacs -*~ \ No newline at end of file +*~ + +# Drone +.drone.secrets \ No newline at end of file