Skip metadata for now

This commit is contained in:
Grishka 2024-03-01 10:43:48 +03:00
parent a7b83bc058
commit 11bda2fe07
2 changed files with 5 additions and 1 deletions

View File

@ -44,6 +44,8 @@ jobs:
KEYSTORE_FILE: ${{ steps.android_keystore.outputs.filePath }}
KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}
SUPPLY_JSON_KEY_DATA: ${{ secrets.GOOGLE_SERVICE_ACCOUNT_KEY }}
SUPPLY_VALIDATE_ONLY: true
SUPPLY_SKIP_UPLOAD_METADATA: true
- name: Build release apk
run: ./gradlew assembleRelease

View File

@ -28,7 +28,9 @@ platform :android do
build_type: "release",
)
upload_to_play_store(
changes_not_sent_for_review: true
changes_not_sent_for_review: true,
skip_upload_images: true,
skip_upload_screenshots: true
)
end
end