From 3b534553438d382003e55faf771130be59513687 Mon Sep 17 00:00:00 2001 From: Nathan Coad Date: Wed, 25 Sep 2024 21:07:47 +1000 Subject: [PATCH] gzip output binary --- .drone.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.drone.sh b/.drone.sh index 5ebad6a..f098c0e 100755 --- a/.drone.sh +++ b/.drone.sh @@ -30,8 +30,9 @@ do echo 'An error has occurred! Aborting the script execution...' exit 1 fi + gzip build/$output_name echo "build complete at $buildtime : $output_name" - sha256sum build/$output_name > build/${output_name}_checksum.txt + sha256sum build/${output_name}.gz > build/${output_name}_checksum.txt done ls -lah build