From 38b72f1ecb36c7981dc74da7fd158b46e05e381a Mon Sep 17 00:00:00 2001 From: brian Date: Mon, 20 Nov 2023 03:54:13 -0500 Subject: [PATCH] Started setting up auto builds --- drone.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 drone.yml diff --git a/drone.yml b/drone.yml new file mode 100644 index 0000000..8abe62f --- /dev/null +++ b/drone.yml @@ -0,0 +1,16 @@ +kind: pipeline +type: docker +name: caddy-ui + +platform: + os: linux + arch: amd64 + + +steps: + - name: npm-install + image: node:lts-alpine + commands: + - apk add --no-cache libc6-compat + - npm install + - npm run build \ No newline at end of file