Mercurial > public > simoleon
diff fastlane/Fastfile @ 94:507ed393a72c
Added App Store metadata
author | Dennis Concepción Martín <dennisconcepcionmartin@gmail.com> |
---|---|
date | Tue, 03 Aug 2021 13:20:09 +0100 |
parents | 88caa2e8573b |
children | 5c7b675ede8f |
line wrap: on
line diff
--- a/fastlane/Fastfile Tue Aug 03 12:33:32 2021 +0100 +++ b/fastlane/Fastfile Tue Aug 03 13:20:09 2021 +0100 @@ -16,6 +16,7 @@ default_platform(:ios) platform :ios do + desc "Push a new beta build to TestFlight" lane :beta do increment_build_number( @@ -28,4 +29,12 @@ build_app(scheme: "Simoleon") upload_to_testflight end + + desc "Release new version to App Store" + lane :release do + capture_screenshots + build_app(scheme: "Simoleon") + upload_to_app_store + end + end