我是企业帐户的团队代理,但是在加入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中的成员身份选项时,我无法以代理身份退出,但可以选择“转移团队代理角色” 。我不想转移就删除它。
答案 0 :(得分:1)
您需要有人将您从这些帐户之一中删除,或者您可以指定环境变量或命令行参数,以便不提示您。看来您在这里使用match
,所以...
使用CLI:match --team_id xxx
或match --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