From 1682dcbddfae931246c824106a0299ecaf3068bc Mon Sep 17 00:00:00 2001 From: Koen Date: Thu, 28 Sep 2023 12:17:33 +0200 Subject: [PATCH] Added signing to deploy scripts. --- deploy-playstore.sh | 4 ++++ deploy-stable.sh | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/deploy-playstore.sh b/deploy-playstore.sh index 7c0ef196..4653e779 100644 --- a/deploy-playstore.sh +++ b/deploy-playstore.sh @@ -1,6 +1,10 @@ #!/bin/sh DOCUMENT_ROOT=/var/www/html +# Sign sources +echo "Signing all sources..." +bash ./sign-all-sources.sh + # Build content echo "Building content..." ./gradlew --stacktrace bundlePlaystoreRelease diff --git a/deploy-stable.sh b/deploy-stable.sh index 5652189d..3647359a 100644 --- a/deploy-stable.sh +++ b/deploy-stable.sh @@ -1,6 +1,10 @@ #!/bin/sh DOCUMENT_ROOT=/var/www/html +# Sign sources +echo "Signing all sources..." +bash ./sign-all-sources.sh + # Build content echo "Building content..." ./gradlew --stacktrace assembleStableRelease