From 11bda2fe07ff4d5b03e443287efde9bf88f13b3d Mon Sep 17 00:00:00 2001 From: Grishka Date: Fri, 1 Mar 2024 10:43:48 +0300 Subject: [PATCH] Skip metadata for now --- .github/workflows/build_and_deploy.yml | 2 ++ fastlane/Fastfile | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_and_deploy.yml b/.github/workflows/build_and_deploy.yml index de3f629e..8a6e7d2d 100644 --- a/.github/workflows/build_and_deploy.yml +++ b/.github/workflows/build_and_deploy.yml @@ -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 diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 0538f8db..9cbe7f69 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -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