feat: fetch certs in read-only
Some checks failed
continuous-integration/drone/pr Build is failing

This commit is contained in:
Malo Léon 2024-02-29 13:13:07 +00:00
parent dc9ce095b4
commit 48c5215c70
3 changed files with 1 additions and 12 deletions

View File

@ -105,9 +105,6 @@ class BuildIpaTask extends BuildAppTask {
'${getIosConfigResult.ok!.iosFolderPath}/${getIosConfigResult.ok!.gitCertsPrivateKeyFileName}',
keychainName: 'match',
keychainPassword: 'flutter-cd-cli',
userName: getIosConfigResult.ok!.userName,
teamId: getIosConfigResult.ok!.teamId,
teamName: getIosConfigResult.ok!.teamName,
gitUrl: getIosConfigResult.ok!.gitUrl,
gitPassphrase: getIosConfigResult.ok!.gitPassphrase,
),

View File

@ -20,9 +20,6 @@ class FastlaneGetCertificatesParameters {
required this.appIdentifier,
required this.keychainName,
required this.keychainPassword,
required this.userName,
required this.teamId,
required this.teamName,
required this.gitUrl,
required this.gitPassphrase,
});
@ -31,9 +28,6 @@ class FastlaneGetCertificatesParameters {
final String appIdentifier;
final String keychainName;
final String keychainPassword;
final String userName;
final String teamId;
final String teamName;
final String gitUrl;
final String gitPassphrase;
@ -42,9 +36,6 @@ class FastlaneGetCertificatesParameters {
'git_private_key:$gitPrivateKey',
'keychain_name:$keychainName',
'keychain_password:$keychainPassword',
'username:$userName',
'team_id:$teamId',
'team_name:$teamName',
'git_url:$gitUrl',
'storage_mode:git',
];

View File

@ -40,6 +40,7 @@ class FastlaneGetCertificateUsecase
'run',
'match',
'type:appstore',
'readonly:true',
...param.toList(),
],
environment: {