From 7d44816b2e4e6f1c9fb2e7479f4c001941e3ab77 Mon Sep 17 00:00:00 2001 From: Niklas Date: Thu, 23 Apr 2020 00:12:32 +0200 Subject: [PATCH] added tar in drone file --- .drone.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index ac40329..f11a58c 100644 --- a/.drone.yml +++ b/.drone.yml @@ -7,6 +7,8 @@ steps: commands: - npm install - npm run buildProd + - mkdir build + - tar -czvf build/bundle.tar.gz dist - name: gitea_release image: plugins/gitea-release @@ -15,7 +17,11 @@ steps: from_secret: GITEA_API_KEY base_url: https://git.kapelle.org files: - - dist/* + - build/* + checksum: + - md5 + - sha1 + - sha256 when: event: tag