fastlane脚本

  1. 自动签名,并上传蒲公英

     default_platform(:ios)
     
     #自动获取配置文件
     get_provisioning_profile(
       adhoc: true,
       force: true,
       filename: "myFile.mobileprovision"
     )
    
     platform :ios do
         desc "Push a new release build to the App Store"
         lane :beta do
             build_app(export_method: "ad-hoc")
             pgyer(api_key: "<api_key>", user_key: "api_key")
         end
     end
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容