Mercurial > public > simoleon
comparison fastlane/Fastfile @ 143:407611b9df91
Add new Upload to App Store lane
author | Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com> |
---|---|
date | Tue, 17 Aug 2021 08:42:00 +0100 |
parents | bee9102c2e9c |
children |
comparison
equal
deleted
inserted
replaced
142:0acbf33c73bf | 143:407611b9df91 |
---|---|
30 notes: "Go and crash it. Thank you for reviewing <3" | 30 notes: "Go and crash it. Thank you for reviewing <3" |
31 } | 31 } |
32 ) | 32 ) |
33 end | 33 end |
34 | 34 |
35 desc "Release new version to App Store" | 35 desc "Capture screenshots and release version to App Store" |
36 lane :release do | 36 lane :release do |
37 capture_screenshots | 37 capture_screenshots |
38 build_app(scheme: "Simoleon") | 38 build_app(scheme: "Simoleon") |
39 upload_to_app_store | 39 upload_to_app_store |
40 end | 40 end |
41 | |
42 desc "Upload to App Store Connect" | |
43 lane :upload do | |
44 build_app(scheme: "Simoleon") | |
45 upload_to_app_store | |
46 end | |
41 | 47 |
42 end | 48 end |