iOS 进阶

iOS_fastlane 安装和上传到TestFlight

2022-04-28  本文已影响0人  会上树的潴

fastlane简介

fastlane 用于iOS和Android的自动化打包、发布等工作,可以节省大量无效时间。当然,fastlane不仅只能打包和发布,还有更强大的功能等着我们去发现


fastlane_text.png

参考网站

官网: https://docs.fastlane.tools

安装fastlane

在项目中初始化fastlane 使用命令fastlane init

\color{#ee4000}{注意每个项目使用fastlane的时候,都需要在项目路径下面使用命令`fastlane init`来初始化}

default_platform(:iOS)

platform :iOS do
  desc "Push a new beta build to TestFlight"
  lane :beta do
    increment_build_number(xcodeproj: "TestDomain.xcodeproj")
    build_app(scheme: "TestDomain")
    upload_to_testflight
  end
end
image.png

上传到TestFlight

image.png
fastlane  beta
上一篇 下一篇

猜你喜欢

热点阅读