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.

28 lines
756 B

5 years ago
  1. # This file contains the fastlane.tools configuration
  2. # You can find the documentation at https://docs.fastlane.tools
  3. #
  4. # For a list of all available actions, check out
  5. #
  6. # https://docs.fastlane.tools/actions
  7. #
  8. # For a list of all available plugins, check out
  9. #
  10. # https://docs.fastlane.tools/plugins/available-plugins
  11. #
  12. # Uncomment the line if you want fastlane to automatically update itself
  13. # update_fastlane
  14. default_platform(:ios)
  15. platform :ios do
  16. desc "Push a new beta build to TestFlight"
  17. lane :beta do
  18. # increment_build_number(
  19. # build_number: app_store_build_number + 1,
  20. # xcodeproj: "Example.xcodeproj"
  21. # )
  22. build_app(workspace: "GME Remit.xcworkspace", scheme: "GME Remit")
  23. upload_to_testflight
  24. end
  25. end