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: "", user_key: "api_key")
         end
     end

你可能感兴趣的:(fastlane脚本)