官方文檔 fastlane doc : https://docs.fastlane.tools/
使用 gem 安裝 fastlane
sudo gem install fastlane -NV
或者使用 Homebrew
brew install fastlane
進入項目根目錄初始化fastlane
fastlane init
在這個過程中墨技,會讓選擇fastlane 的用處惩阶,我選擇3
接下來會讓你輸入AppleID 和密碼。
執(zhí)行完成后扣汪,會在工程目錄下生成fastlane文件夾,我們需要修改fastlane文件夾的兩個配置文件:Appfile和Fastfile
1 修改Appfile
app_identifier("com.xxxx.betterVolunteer") # The bundle identifier of your app
apple_id("xxx@eagersoft.cn") # Your Apple email address
# For more information about the Appfile, see:
# https://docs.fastlane.tools/advanced/#appfile
2 安裝插件
fastlane 擁有支持上傳fir.im 和蒲公英的第三方插件断楷。
fastlane add_plugin firim #fir插件
fastlane add_plugin pgyer # 蒲公英
3 修改Fastfile
default_platform(:ios)
platform :ios do
#desc "Push a new beta build to TestFlight"
#lane :beta do
# increment_build_number(xcodeproj: "YouZhiYuan.xcodeproj")
#build_app(workspace: "YouZhiYuan.xcworkspace", scheme: "YouZhiYuan-Adhoc")
#upload_to_testflight
#end
desc "archive ipa to firim"
lane :archive do
#打包的ipa存放路徑
outputDir = "/Users/youzy/Documents/ipa/#{Time.now.strftime('%Y-%m-%d%H:%M:%S')}"
#打包的ipa名稱
outputName = "MOFSPickerManager-#{Time.now.strftime("%Y-%m-%d %H:%M:%S")}"
gym(
clean: true,
scheme: "XXXX", #項目的scheme
workspace: "XXXX.xcworkspace", #如果項目使用CocoaPods需要加上
export_xcargs: "-allowProvisioningUpdates",
configuration: "Release",
output_directory: outputDir,
output_name: outputName,
include_bitcode: false,
include_symbols: true,
silent: true,
export_options: {
method: "ad-hoc", #根據(jù)具體情況定
provisioningProfiles: {
"com.XXX.betterVolunteer" => "iOSDistributionAdhocCertifateNew",# bundId => 證書名字
},
thinning: "<none>",
teamID: "xxx",# 鑰匙串證書后面的teamID
}
)
#firim(firim_api_token: "XXXXXX") #上傳到firim
end
after_all do |lane, options|
#read -p "請輸入版本描述信息:" describe
#echo "$describe"
firim(firim_api_token: "xxxxxx", app_changelog: "自動化打包測試") #上傳到firim token 為fir.im個人中心的api token
# pgyer(api_key: "7f15xxxxxxxxxxxxxxxxxx141", user_key: "4a5bcxxxxxxxxxxxxxxx3a9e", update_description: "update by fastlane") # 上傳蒲公英
end
end
4 執(zhí)行 fastlane archive
接下來開一局王者榮耀,慢慢等待.....
另外崭别,由于根據(jù)每個人公司情況不同冬筒,有的發(fā)布測試包之后,需要寫一份郵件通知測試人員茅主,有的需要群發(fā)消息舞痰。
1: fir.im 支持上傳新包自動群發(fā)消息,首先需要在釘釘或者企業(yè)微信添加一個機器人诀姚,然后在fir.im中我的應用添加機器人鏈接就行了响牛。這樣每一次上傳新包,就會自動通知群里面赫段。消息內(nèi)用包含(app名稱呀打、下載鏈接、版本糯笙、跟新內(nèi)容)贬丛,就是那么方便??
2: 群發(fā)郵件通知測試人員。寫一個腳本炬丸,在ipa包上傳第三方平臺之后,執(zhí)行郵件發(fā)送腳本就ok了。