fastlane doc

Documentation

docs.fastlane.tools

App Store Deployment

iOS App Store deployment using fastlane

[Building your app](iOS App Store deployment using fastlane)

fastlane takes care of building your app using a feature called gym, just add the following to your Fastfile:

lane :appstore do
  gym(scheme: "MyApp")
end

Additionally you can specify more options for building your app, for example

lane :appstore do
  gym(scheme: "MyApp",
      workspace: "Example.xcworkspace",
      include_bitcode: true)
end

Try running the lane using

$ fastlane appstore

If everything works, you should have a [ProductName].ipa file in the current directory. To get a list of all available parameters for gym, run fastlane action gym.

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325504241&siteId=291194637