From c4adcf4655550214ae795d941eb51878f34cedeb Mon Sep 17 00:00:00 2001 From: kolaente Date: Mon, 4 Sep 2023 22:19:37 +0200 Subject: [PATCH] chore: include version json string in release zip --- .drone.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 43c0ca8d2..acda24b6f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -226,6 +226,7 @@ steps: image: kolaente/zip pull: always commands: + - cp src/version.json dist - cd dist - zip -r ../vikunja-frontend-unstable.zip * - cd .. @@ -307,6 +308,7 @@ steps: image: kolaente/zip pull: always commands: + - cp src/version.json dist - cd dist - zip -r ../vikunja-frontend-${DRONE_TAG##v}.zip * - cd .. @@ -530,6 +532,6 @@ steps: from_secret: crowdin_key --- kind: signature -hmac: 3d8720367a6b3c4b3bf945a39980e5a44d611eee39891d64eb727192a20ddc84 +hmac: 21ecc05b02fbd35b411494e046479c3ff23bc8b221ffae91ccf4a8f31dafa3d3 ...