Я пытаюсь загрузить архив ios в testflight, используя bitrise и fastlane, но после успеха архива я получаю ошибку "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