fastlane-community / fastlane-plugin-ionic

Integrate your Ionic build into your Fastlane setup
MIT License
86 stars 45 forks source link

How to upload to testflight? #55

Closed prescindivel closed 4 years ago

prescindivel commented 4 years ago

I fixed with:

lane :deploy_testflight do
    match(type: "appstore")
    ionic(
      platform: "ios",
      prod: true,
      release: true,
      type: "appstore",
    )
    testflight(
      ipa: ENV["CORDOVA_IOS_RELEASE_BUILD_PATH"],
      skip_waiting_for_build_processing: true,
    )
  end
janpio commented 4 years ago

Yep, that looks perfectly fine.