文档
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.
网友评论