【发布时间】:2019-06-08 08:59:05
【问题描述】:
我正在尝试使用 bitrise 和 fastlane 将 ios 存档上传到 testflight,但存档成功后我收到错误 "Could not find transporter at Applications/Xcode-beta.app/Contents/Developer" 并且工作流失败。
这是我的 fastlane 文件
platform :ios do
desc "Push a new beta build to TestFlight"
lane :beta do
increment_build_number(xcodeproj: "APPNAME.xcodeproj")
match(type: "appstore")
cocoapods
build_app(workspace: "APPNAME.xcworkspace", scheme: "APPNAME")
upload_to_testflight
commit_version_bump(
message: "Fastlane iOS: Released new build #{lane_context[SharedValues::BUILD_NUMBER]} [ci skip].",
xcodeproj: "./APPNAME.xcodeproj",
force: true
)
clean_build_artifacts
end
end
【问题讨论】:
-
Xcode-beta.app看起来很奇怪。您是否以某种方式告诉 bitrise 使用 Xcode 测试版而不是普通版本?