From 8b1b318371bc9b2dba0c197a7eca29545c95f8b2 Mon Sep 17 00:00:00 2001 From: lagertonne Date: Sun, 7 Mar 2021 13:43:29 +0100 Subject: [PATCH] Add automatic building --- .drone.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..6c657ca --- /dev/null +++ b/.drone.yml @@ -0,0 +1,31 @@ +--- +kind: pipeline +type: docker +name: default + +steps: + - name: Build live-cd Image + image: debian:buster + privileged: true + commands: + - apt update + - apt install -y live-build binutils + - sed -i '1161s%umount%#umount%' /usr/share/debootstrap/functions + - lb clean --purge + - lb config + - lb build + +# - name: gitea_release +# image: plugins/gitea-release +# settings: +# api_key: +# from_secret: lagertonne_droneio_key +# base_url: https://git.neulandlabor.de/ +# files: +# - live-image*.iso +# checksum: +# - sha512 +# - md5 +# when: +# event: tag +