ci: Set fastlane max upload retries

pull/593/head
Krille 2 years ago
parent 2713b38b80
commit 40f6fe17be
No known key found for this signature in database

@ -10,6 +10,9 @@
# https://docs.fastlane.tools/plugins/available-plugins # 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 # Uncomment the line if you want fastlane to automatically update itself
update_fastlane update_fastlane
@ -45,10 +48,6 @@ platform :android do
track: 'internal', track: 'internal',
aab: '../build/app/outputs/bundle/release/app-release.aab', aab: '../build/app/outputs/bundle/release/app-release.aab',
version_code: "#{last_version+1}", 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 end
@ -58,10 +57,6 @@ platform :android do
track_promote_to: "beta", track_promote_to: "beta",
deactivate_on_promote: false, deactivate_on_promote: false,
skip_upload_changelogs: true, 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
@ -71,10 +66,6 @@ platform :android do
track_promote_to: "production", track_promote_to: "production",
deactivate_on_promote: false, deactivate_on_promote: false,
skip_upload_changelogs: true, 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
end end

Loading…
Cancel
Save