在firebase上,测试人员组以名称和别名存在,例如test-group
。我分配给:
firebase_app_distribution(
app: ****,
service_credentials_file: ***,
groups: 'test-group',
firebase_cli_token: ****
)
当运行fastlane从本地主机分发应用程序时,应用程序分发没有问题,但是当运行在CircleCI上时,它会失败。
好了!无法启用测试人员的访问权限。检查是否存在组,测试者电子邮件的格式是否正确: 组:“测试组”
在谷歌上搜索错误没有帮助。也增加了firebase_cli_token
,但没有成功。还发现了添加防火墙工具来安装CLI的建议,结果是相同的。
-
run:
name: "Install Firebase CLI"
command: |
curl -sL firebase.tools | bash
有谁面临类似的问题吗?
发布于 2020-10-06 06:52:31
我有同样的问题,并发现它的这里。它是个窃听器,但它是固定的!
将firebase插件更新为0.2.3
**:**
fastlane update_plugins
或
更改Gemfile.lock中的版本并执行以下操作
fastlane add_plugin firebase_app_distribution
https://stackoverflow.com/questions/64223315
复制相似问题