iOS Fastlane Match 协同设计问题

ir2*_*pid 5 app-store ios fastlane fastlane-match fastlane-gym

我的 xcodeproject 将签名版本设置为“match Adhoc teamid

这在构建临时版本、匹配安装临时配置文件和gym使用它时效果很好。

但是使用应用程序商店发布匹配正确安装应用程序商店配置文件(“匹配应用程序商店teamid ”),但似乎gym仍然尝试再次使用临时签名。给出错误:

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') 
Run Code Online (Sandbox Code Playgroud)

我的快速文件

    -------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",
Run Code Online (Sandbox Code Playgroud)