首页 > 解决方案 > 没有给定快速通道问题的 ipa 文件

问题描述

我已经为我的一个 iOS 项目配置了 Fastlane。在上传构建以测试飞行时执行所有步骤后,我收到一条错误消息,提示 [!] No IPA file given

下面是我的快车道文件。

platform :ios do

  desc "Push a new release build to the App Store"
  lane :release do
    increment_build_number(xcodeproj: "XXXXX/XXXXX.xcodeproj")
    match(type: "appstore")
    cocoapods
    build_app(
      workspace: "XXXXX.xcworkspace", 
      scheme: "XXXXX_APPSTORE")
    upload_to_app_store(
      skip_waiting_for_build_processing: true
    )
    
  end

  desc "Push a new release build to the TestFlight"
  lane :beta do
    increment_build_number(xcodeproj: "XXXXX/XXXXX.xcodeproj")
    match(type: "appstore")
    cocoapods
    build_app(
      workspace: "XXXXX.xcworkspace", 
      scheme: "XXXXX_APPSTORE")
    upload_to_testflight(
      skip_waiting_for_build_processing: true
    )    
  end
end

我在 ternimal 中运行 bundle exec fastlane beta

请帮忙

标签: iosswiftcontinuous-integrationfastlanecd

解决方案


推荐阅读