aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMenny Even Danan <menny@evendanan.net>2020-03-17 01:52:24 +0000
committerMenny Even Danan <menny@evendanan.net>2020-03-17 01:52:24 +0000
commitf10b5e958209801ea2492e60a51240af12c768ba (patch)
tree6947eccb9b0bcb338984e40bdf16d027c7aba529 /.github
parente4a85fdc7dc706f235d48f466c5ef7225c3ad3c2 (diff)
downloadAnySoftKeyboard-f10b5e958209801ea2492e60a51240af12c768ba.tar.gz
AnySoftKeyboard-f10b5e958209801ea2492e60a51240af12c768ba.tar.bz2
action argument fix
Diffstat (limited to '.github')
-rw-r--r--.github/actions/deploy/action.yml2
-rwxr-xr-x.github/actions/deploy/deploy.sh4
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}" )