You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Fastfile 806B

12345678910111213141516171819202122232425262728293031
  1. ENV["FASTLANE_SKIP_UPDATE_CHECK"] = "1"
  2. opt_out_usage
  3. default_platform(:ios)
  4. platform :ios do
  5. desc "Push a new beta build to TestFlight"
  6. lane :deploy do
  7. # Set the app identifier
  8. update_app_identifier(
  9. xcodeproj: "app/app.xcodeproj",
  10. plist_path: "src/Info.plist",
  11. app_identifier: "com.atlassian.JitsiMeet.ios"
  12. )
  13. # Inrement the build number by 1
  14. increment_build_number(
  15. build_number: latest_testflight_build_number + 1,
  16. xcodeproj: "app/app.xcodeproj"
  17. )
  18. # Actually build the app
  19. build_app(scheme: "jitsi-meet", include_bitcode: false)
  20. # Upload the build to TestFlight (but don't distribute it)
  21. upload_to_testflight(skip_submission: true, skip_waiting_for_build_processing: true)
  22. # Cleanup
  23. clean_build_artifacts
  24. end
  25. end