Fastlane Apple 开发者帐户凭据
Fastlane Apple Developer account credentials
我们现在正在手动 运行ning fastlane,因为我们还没有在服务器上设置 CI/CD。新开发人员 运行 我们的 fastfile 并被提示输入我们用于匹配的密码。所以他输入了密码,这很好用,但接下来它提示他输入那个苹果帐户的密码,这让我想到了我的问题。
该帐户在 Apple 门户中具有管理员访问权限,我们不希望每个人都知道登录凭据。有没有一种方法可以让开发人员 运行 在不知道苹果帐户密码的情况下进行匹配,这样我们就可以阻止人们访问具有管理员权限的登录信息?
如果您使用 readonly
,Fastlane match
将不需要密码。
If you decide to run match without access to the Developer Portal, make sure to use the --readonly option so that the commands don't ask you for the password to the Developer Portal.
我们现在正在手动 运行ning fastlane,因为我们还没有在服务器上设置 CI/CD。新开发人员 运行 我们的 fastfile 并被提示输入我们用于匹配的密码。所以他输入了密码,这很好用,但接下来它提示他输入那个苹果帐户的密码,这让我想到了我的问题。
该帐户在 Apple 门户中具有管理员访问权限,我们不希望每个人都知道登录凭据。有没有一种方法可以让开发人员 运行 在不知道苹果帐户密码的情况下进行匹配,这样我们就可以阻止人们访问具有管理员权限的登录信息?
如果您使用 readonly
,Fastlane match
将不需要密码。
If you decide to run match without access to the Developer Portal, make sure to use the --readonly option so that the commands don't ask you for the password to the Developer Portal.