From 3adb125d74436abd59cbc5873fb2edf587346466 Mon Sep 17 00:00:00 2001 From: Lukas | AstroGD Date: Mon, 22 Jul 2024 14:01:42 +0200 Subject: [PATCH] feat: Add ci pipeline --- .drone.yml | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..e84815c --- /dev/null +++ b/.drone.yml @@ -0,0 +1,42 @@ +--- +kind: pipeline +type: docker +name: build +trigger: + event: + - push + - cron + branch: + include: + - main + cron: + include: + - daily +steps: + - name: build-lts + image: plugins/docker + settings: + username: + from_secret: registry_username + password: + from_secret: registry_key + repo: astrogd/pnpm + tags: + - lts-alpine + - lts + - name: build-latest + image: plugins/docker + settings: + username: + from_secret: registry_username + password: + from_secret: registry_key + repo: astrogd/pnpm + tags: + - latest-alpine + - latest +--- +kind: signature +hmac: 49ace2dd657133770bc210f9493233f83ca27d088dd94a4e54b29432d4188944 + +...