fastlane_doc

文档

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.

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容