美文网首页
fastlane脚本

fastlane脚本

作者: CAICAI0 | 来源:发表于2018-12-13 08:20 被阅读29次
  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

相关文章

网友评论

      本文标题:fastlane脚本

      本文链接:https://www.haomeiwen.com/subject/nazmhqtx.html