chore: Update iOS fastlane

This commit is contained in:
Christian Pauly 2021-06-20 08:46:12 +02:00
commit a2823d39d5
8 changed files with 41 additions and 12 deletions

View file

@ -23,3 +23,11 @@ platform :ios do
upload_to_testflight
end
end
lane :release do
capture_screenshots # generate new screenshots for the App Store
sync_code_signing(type: "appstore") # see code signing guide for more information
build_app(scheme: "Runner")
upload_to_app_store # upload your app to App Store Connect
slack(message: "Successfully uploaded a new App Store build")
end