fastlane/lib/assets/DefaultFastfileTemplate in fastlane-2.69.3 vs fastlane/lib/assets/DefaultFastfileTemplate in fastlane-2.70.0.beta.20171213010003

- old
+ new

@@ -28,11 +28,11 @@ end desc "Submit a new Beta Build to Apple TestFlight" desc "This will also make sure the profile is up to date" lane :beta do - # sync_code_signing(type: "appstore") # more information: https://codesigning.guide + # match(type: "appstore") # more information: https://codesigning.guide build_app[[SCHEME]] # more options available upload_to_testflight # sh "your_script.sh" # You can also use other beta testing services here (run `fastlane actions`) @@ -40,10 +40,10 @@ desc "Deploy a new version to the App Store" lane :release do # sync_code_signing(type: "appstore") capture_screenshots - build_app[[SCHEME]] # more options available + build_app[[SCHEME]] # Build your app - more options available upload_to_app_store(force: true) # frame_screenshots end # You can define as many lanes as you want