mirror of
https://github.com/godotengine/godot-build-scripts.git
synced 2025-12-31 05:48:35 +03:00
Fix check for Play Store JSON upload key
(cherry picked from commit d72076547a)
This commit is contained in:
@@ -25,4 +25,5 @@ source "$VENV_DIR/bin/activate"
|
||||
echo "Installing google-api-python-client"
|
||||
pip install --upgrade google-api-python-client
|
||||
|
||||
echo "Uploading editor to Google Play Store..."
|
||||
python3 "$PYTHON_SCRIPT" "$AAB_FILE" "$NDS_FILE" "$JSON_KEY_FILE" "$VERSION_NAME"
|
||||
|
||||
@@ -178,11 +178,11 @@ fi
|
||||
|
||||
# Godot Android Editor
|
||||
|
||||
if [ -d "deps/playstore_key.json" ]; then
|
||||
echo "Publishing Android Editor to PlayStore..."
|
||||
if [ -e "${GODOT_ANDROID_UPLOAD_JSON_KEY}" ]; then
|
||||
echo "Publishing Android Editor to Play Store..."
|
||||
sh build-android/upload-playstore.sh ${godot_version}
|
||||
else
|
||||
echo "Disabling Android Editor publishing as deps/playstore_key.json doesn't exist."
|
||||
echo "Disabling Android Editor publishing as no valid Play Store JSON key was found."
|
||||
fi
|
||||
|
||||
# Godot Android library
|
||||
|
||||
Reference in New Issue
Block a user