diff options
| -rw-r--r-- | .github/actions/deploy/action.yml | 2 | ||||
| -rwxr-xr-x | .github/actions/deploy/deploy.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/actions/deploy/action.yml b/.github/actions/deploy/action.yml index 3e52fb21a..43c6a84f7 100644 --- a/.github/actions/deploy/action.yml +++ b/.github/actions/deploy/action.yml @@ -46,7 +46,7 @@ runs: - ${{ inputs.keystore_url }} - ${{ inputs.keystore_password }} - ${{ inputs.keystore_key_password }} - - ${{ inputs.publish_service_account_creds_json }} + - ${{ inputs.publish_service_account_creds_json_url }} branding: icon: 'upload-cloud' diff --git a/.github/actions/deploy/deploy.sh b/.github/actions/deploy/deploy.sh index 570f53397..c9525d582 100755 --- a/.github/actions/deploy/deploy.sh +++ b/.github/actions/deploy/deploy.sh @@ -42,9 +42,9 @@ echo "for ${DEPLOYMENT_ENVIRONMENT}: will deploy process ${PROCESS_NAME} to ${DE export BUILD_COUNT_FOR_VERSION=${GITHUB_RUN_NUMBER} echo "Downloading secret files..." -wget --tries=5 --waitretry=5 "${KEYSTORE_FILE_URL}" -O /tmp/anysoftkeyboard.keystore +wget --tries=5 --waitretry=5 "${KEYSTORE_FILE_URL}" -q -O /tmp/anysoftkeyboard.keystore stat /tmp/anysoftkeyboard.keystore -wget --tries=5 --waitretry=5 "${PUBLISH_JSON_URL}" -O /tmp/apk_upload_key.json +wget --tries=5 --waitretry=5 "${PUBLISH_JSON_URL}" -q -O /tmp/apk_upload_key.json stat /tmp/apk_upload_key.json DEPLOY_TASKS=( "--stacktrace" "-PwithAutoVersioning" ":generateFdroidYamls" "-DdeployChannel=${DEPLOY_CHANNEL}" "-DdeployFraction=${FRACTION}" ) |
