fastlane+蒲公英自动化打包
具体操作参考文章作者,这里做一下备忘
这里我的 Fastfile
# 定义fastlane版本号
fastlane_version “2.48.0”
# 定义打包平台
default_platform :ios
def updateProjectBuildNumber
currentTime = Time.new.strftime("%Y%m%d")
build = get_build_number()
if build.include?"#{currentTime}."
# => 为当天版本 计算迭代版本号
lastStr = build[build.length-2..build.length-1]
lastNum = lastStr.to_i
lastNum = lastNum + 1
lastStr = lastNum.to_s
if lastNum < 10
lastStr = lastStr.insert(0,"0")
end
build = "#{currentTime}.#{lastStr}"
else
# => 非当天版本 build 号重置
build = "#{currentTime}.01"
end
puts("*************| 更新build #{build} |*************")
# => 更改项目 build 号
increment_build_number(
build_number: "#{build}"
)
end
#指定项目的scheme名称
scheme=“TestCI”
#蒲公英api_key和user_key
api_key=“71c9c7871e274a5cb73587f1c64bfb43”
user_key=“bce10ecc1060f01fd50972de24a19768”
# 任务脚本
platform :ios do
lane :development_build do|options|
branch = options[:branch]
puts “开始打development ipa”
updateProjectBuildNumber #更改项目build号
# 开始打包
gym(
#输出的ipa名称
output_name:”#{scheme}_#{get_build_number()}”,
# 是否清空以前的编译信息 true:是
clean:true,
# 指定打包方式,Release 或者 Debug
configuration:"Release",
# 指定打包所使用的输出方式,目前支持app-store, package, ad-hoc, enterprise, development
export_method:"development",
# 指定输出文件夹
output_directory:"./fastlane/build",
)
puts "开始上传蒲公英"
# 开始上传蒲公英
pgyer(api_key: “#{api_key}”, user_key: “#{user_key}”)
end
end
需要注意的是
fastlane_version “2.48.0” 这里替换成你的fastlane版本号
scheme=“TestCI” 换成你的scheme名称
api_key=“71c9c7871e274a5cb73587f1c64bfb43”
user_key=“bce10ecc1060f01fd50972de24a19768”
以上两个可以去蒲公英账号设置中找到api中找到。
执行以下命令
fastlane add_pluginpgyer
有时提示找不到 fastlane文件夹时可以在工程路径中手动创建一个,重新执行一下该命令
换账号时,注意更换api_key 和 user_key
以后每次打包并上传只需要到指定工程路径下执行一下命令
fastlane development_build
ipa包就会打包并上传至蒲公英