From 9d9687100d30f94c79e72b5e4d4e28dbb5a6e907 Mon Sep 17 00:00:00 2001 From: Gregory Rudolph Date: Wed, 21 Jul 2021 22:39:55 -0400 Subject: [PATCH] Add drone config --- .drone.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..c15d334 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,27 @@ +kind: pipeline +type: docker +name: default + +steps: +- name: Build + image: therecipe/qt:linux + commands: + - go vet -v + - qtdeploy build linux + +- name: gitea_release + image: plugins/gitea-release + settings: + base_url: https://git.nightmare.haus + api_key: + from_secret: gitea_token + files: ./TeslaGo + checksum: + - md5 + - sha1 + - sha256 + - sha512 + - adler32 + - crc32 + when: + event: [tag]