Apple开发人员帐户-从代理删除团队ID

时间:2018-08-23 12:27:57

标签: ios itunesconnect fastlane apple-developer fastlane-match

我是企业帐户的团队代理,但是在加入Fastlane比赛的新团队之后,我可以选择在我作为代理的团队还是新邀请的团队之间进行选择。

[14:03:47]: Fetching certificates and profiles...
Multiple teams found on the Developer Portal, please enter the number of the team you want to use: 
1) xxxxx "some.org" (Company/Organization)
2) yyyyy "some.org" (In-House)

我如何yyyyy删除以前的代理帐户,所以不会显示此选项。

当尝试退出developer.apple.com中的成员身份选项时,我无法以代理身份退出,但可以选择“转移团队代理角色” enter image description here。我不想转移就删除它。

1 个答案:

答案 0 :(得分:1)

您需要有人将您从这些帐户之一中删除,或者您可以指定环境变量或命令行参数,以便不提示您。看来您在这里使用match,所以...

使用CLI:match --team_id xxxmatch --team_name "some.org"

使用环境变量:FASTLANE_TEAM_ID=xxx match或您可以在系统中设置此环境变量

如果您正在使用Fastfile并调用match操作,则可以执行match(team_id: "xxx")match(team_name: "some.org")

您可以通过执行fastlane match --help,执行fastlane action match或在此处查看文档-https://docs.fastlane.tools/actions/match/#match

来查看文档