From 45dd46799ea1f577fb31c544f18b41bf105aefd8 Mon Sep 17 00:00:00 2001 From: Roman Tsisyk Date: Sun, 26 Jan 2025 15:50:06 +0300 Subject: [PATCH] [ios] Use FASTLANE_ENABLE_BETA_DELIVER_SYNC_SCREENSHOTS The new Fastlane feature enables incremental synchronization of screenshots without fully removing them during each upload. Signed-off-by: Roman Tsisyk --- xcode/fastlane.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xcode/fastlane.sh b/xcode/fastlane.sh index 8a47da0810..e76925dc8d 100755 --- a/xcode/fastlane.sh +++ b/xcode/fastlane.sh @@ -61,12 +61,13 @@ upload_metadata() { upload_screenshots() { check_keys check_screenshots + export FASTLANE_ENABLE_BETA_DELIVER_SYNC_SCREENSHOTS=true run_fastlane deliver \ --force \ --skip_binary_upload=true \ --skip_app_version_update=true \ --skip_metadata \ - --overwrite_screenshots=true \ + --sync_screenshots=true \ --precheck_include_in_app_purchases=false \ --automatic_release=false }