maint(android): remove --ci parameter from Android release builds

PR #14264 removed the `--ci` parameter from Android builds, but forgot to
remove it for release builds. This PR fixes this.

Follow-up-of: #14264
Build-bot: skip
Test-bot: skip
This commit is contained in:
Eberhard Beilharz 2025-07-09 11:49:05 +02:00
parent 2438f6d2cc
commit 3c7304e8bd
No known key found for this signature in database
GPG key ID: E9140597606020D3

View file

@ -86,7 +86,7 @@ function _publish_to_downloads_keyman_com() {
function _publish_to_playstore() {
builder_echo start "publish to Google Play Store" "Publishing release to Google Play Store"
"${KEYMAN_ROOT}/android/build.sh" "publish:${PUBTARGETS}" --ci
"${KEYMAN_ROOT}/android/build.sh" "publish:${PUBTARGETS}"
builder_echo end "publish to Google Play Store" success "Finished publishing release to Google Play Store"
}