Fastfile 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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 "Make a new beta build"
  17. lane :beta do
  18. increment_build_number(xcodeproj: "Lanu.xcodeproj")
  19. cocoapods
  20. build_app(
  21. workspace: "Lanu.xcworkspace",
  22. export_method: "ad-hoc",
  23. export_options: {
  24. signingStyle: "automatic",
  25. # provisioningProfiles: {
  26. # "com.jiehe.lanu" => "/Users/apple/Downloads/embedded.mobileprovision",
  27. # }
  28. },
  29. clean: true,
  30. output_directory: "output/", # Destination directory. Defaults to current directory.
  31. derived_data_path: "build/", # Destination directory. Defaults to current directory.
  32. scheme: "Lanu"
  33. )
  34. end
  35. end