ci: Set fastlane max upload retries

This commit is contained in:
Krille 2023-09-20 08:30:59 +02:00
parent 2713b38b80
commit 40f6fe17be
No known key found for this signature in database

View file

@ -10,6 +10,9 @@
# https://docs.fastlane.tools/plugins/available-plugins
#
# Workaround for https://github.com/fastlane/fastlane/issues/21507#issuecomment-1723116829
ENV['SUPPLY_UPLOAD_MAX_RETRIES']='5'
# Uncomment the line if you want fastlane to automatically update itself
update_fastlane
@ -45,10 +48,6 @@ platform :android do
track: 'internal',
aab: '../build/app/outputs/bundle/release/app-release.aab',
version_code: "#{last_version+1}",
# Workaround for https://github.com/fastlane/fastlane/issues/21507#issuecomment-1720229951
root_url: "https://androidpublisher.googleapis.com/",
skip_upload_images: true,
skip_upload_screenshots: true
)
end
@ -58,10 +57,6 @@ platform :android do
track_promote_to: "beta",
deactivate_on_promote: false,
skip_upload_changelogs: true,
# Workaround for https://github.com/fastlane/fastlane/issues/21507#issuecomment-1720229951
root_url: "https://androidpublisher.googleapis.com/",
skip_upload_images: true,
skip_upload_screenshots: true
)
end
@ -71,10 +66,6 @@ platform :android do
track_promote_to: "production",
deactivate_on_promote: false,
skip_upload_changelogs: true,
# Workaround for https://github.com/fastlane/fastlane/issues/21507#issuecomment-1720229951
root_url: "https://androidpublisher.googleapis.com/",
skip_upload_images: true,
skip_upload_screenshots: true
)
end
end