首页 > 解决方案 > bitrise 在 Applications/Xcode-beta.app/Contents/Developer 找不到传输器

问题描述

我正在尝试使用 bitrise 和 fastlane 将 ios 存档上传到 testflight,但是存档成功后我收到错误"Could not find transporter at Applications/Xcode-beta.app/Contents/Developer"并且工作流失败。

这是我的快车道文件

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

标签: fastlanebitrise

解决方案


Xcode 11 不再包含 Transporter 应用程序。

https://developer.apple.com/videos/play/wwdc2019/301/


推荐阅读