From 206078a33c85bcc3c80ece43323890959c08918d Mon Sep 17 00:00:00 2001 From: Steve Date: Fri, 15 Dec 2023 18:51:19 -0500 Subject: [PATCH] add drone --- .drone.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..c057a51 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,19 @@ +kind: pipeline +name: default +steps: + - name: submodules + image: alpine/git + commands: + - git submodule update --init --recursive + - name: build-container + image: plugins/docker + settings: + repo: git.saintnet.tech/stryan/tildewatch + registry: git.saintnet.tech + password: + from_secret: build_pass + username: + from_secret: build_username + dockerfile: Containerfile + tags: latest + layers: true