diff options
| author | Menny Even Danan <menny@evendanan.net> | 2020-03-17 01:52:24 +0000 |
|---|---|---|
| committer | Menny Even Danan <menny@evendanan.net> | 2020-03-17 01:52:24 +0000 |
| commit | f10b5e958209801ea2492e60a51240af12c768ba (patch) | |
| tree | 6947eccb9b0bcb338984e40bdf16d027c7aba529 /.github | |
| parent | e4a85fdc7dc706f235d48f466c5ef7225c3ad3c2 (diff) | |
| download | AnySoftKeyboard-f10b5e958209801ea2492e60a51240af12c768ba.tar.gz AnySoftKeyboard-f10b5e958209801ea2492e60a51240af12c768ba.tar.bz2 | |
action argument fix
Diffstat (limited to '.github')
| -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}" ) |
