aboutsummaryrefslogtreecommitdiff
path: root/.github/actions
diff options
context:
space:
mode:
authorMenny Even Danan <menny@evendanan.net>2020-01-30 02:40:14 +0000
committerMenny Even Danan <menny@evendanan.net>2020-01-30 17:20:16 +0000
commite1a5859f96d5d1a7b036797562cf245ab2b3e2d4 (patch)
treefc597c02d4de0b38201ff695da6fa71b947be450 /.github/actions
parente3eabe6e3ed7a33ee3048f62d5857665d8d3383a (diff)
downloadAnySoftKeyboard-e1a5859f96d5d1a7b036797562cf245ab2b3e2d4.tar.gz
AnySoftKeyboard-e1a5859f96d5d1a7b036797562cf245ab2b3e2d4.tar.bz2
consolidate versioning and APK configuration
Diffstat (limited to '.github/actions')
-rwxr-xr-x.github/actions/deploy/deploy.sh13
1 files changed, 8 insertions, 5 deletions
diff --git a/.github/actions/deploy/deploy.sh b/.github/actions/deploy/deploy.sh
index 5383613ca..8e0ae3001 100755
--- a/.github/actions/deploy/deploy.sh
+++ b/.github/actions/deploy/deploy.sh
@@ -7,11 +7,11 @@ export ANYSOFTKEYBOARD_CRASH_REPORT_EMAIL="${1}"
shift
KEYSTORE_FILE_URL="${1}"
shift
-export ANYSOFTKEYBOARD_KEYSTORE_PASSWORD="${1}"
+export KEY_STORE_FILE_PASSWORD="${1}"
shift
-export ANYSOFTKEYBOARD_KEYSTORE_ALIAS="${1}"
+export KEY_STORE_FILE_DEFAULT_ALIAS="${1}"
shift
-export ANYSOFTKEYBOARD_KEYSTORE_KEY_PASSWORD="${1}"
+export KEY_STORE_FILE_DEFAULT_ALIAS_PASSWORD="${1}"
shift
PUBLISH_CERT_FILE_URL="${1}"
shift
@@ -27,5 +27,8 @@ if [[ -z "${KEYSTORE_FILE_URL}" ]]; then
cp ./.github/actions/deploy/debug.keystore /root/.android/ || exit 1
fi
-echo "Counter is ${BUILD_COUNT_FOR_VERSION}, RELEASE_BUILD: ${RELEASE_BUILD}, and crash email: ${ANYSOFTKEYBOARD_CRASH_REPORT_EMAIL}"
-./scripts/ci/ci_deploy.sh ${KEYSTORE_FILE_URL} ${PUBLISH_CERT_FILE_URL} ${DEPLOY_TASKS} \ No newline at end of file
+echo "Counter is ${BUILD_COUNT_FOR_VERSION}, RELEASE_BUILD: ${RELEASE_BUILD}, crash email: ${ANYSOFTKEYBOARD_CRASH_REPORT_EMAIL}, and tasks: ${DEPLOY_TASKS}"
+./scripts/ci/ci_deploy.sh "${KEYSTORE_FILE_URL}" "${PUBLISH_CERT_FILE_URL}" ${DEPLOY_TASKS}
+
+ls -al outputs || true
+ls -al outputs/fdroid/ || true \ No newline at end of file