iOS Fastlane匹配代码签名问题

iOS Fastlane匹配代码签名问题,ios,app-store,fastlane,fastlane-match,fastlane-gym,Ios,App Store,Fastlane,Fastlane Match,Fastlane Gym,我的xcodeproject将签名发布设置为“match Adhoc teamid” 这在构建临时版本、match安装临时资源调配配置文件并供gym使用时效果良好 但是使用appstore releasematch可以正确安装appstore配置文件(“match appstore teamid”),但健身房似乎仍在尝试再次与adhoc签约。给出错误: error: No profile for team 'xx' matching 'match AdHoc yy' found: Xcode

我的xcodeproject将签名发布设置为“match Adhoc teamid”

这在构建临时版本、match安装临时资源调配配置文件并供gym使用时效果良好

但是使用appstore releasematch可以正确安装appstore配置文件(“match appstore teamid”),但健身房似乎仍在尝试再次与adhoc签约。给出错误:

error: No profile for team 'xx' matching 'match AdHoc yy' found: 
Xcode couldn't find any provisioning profiles matching 'xx/match 
AdHoc yy'. Install the profile (by dragging and dropping it onto 
Xcode's dock item) or select a different one in the General tab 
of the target editor. (in target 'zz') 
我的快速文件

    -------adhoc part-------
    match(type: "adhoc", verbose:true)
    gym(scheme: "skoobe[Release]",
          export_method: "ad-hoc",



    -------appstore part-------
    match(type: "appstore", verbose:true)
    gym(scheme: "skoobe[Release]",
          export_method: "app-store",