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