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 749B

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