Skip to content

Commit

Permalink
[#454] Check isForce for apiKey in syncCodeSigning
Browse files Browse the repository at this point in the history
  • Loading branch information
nkhanh44 committed Nov 30, 2023
1 parent dd1965a commit a3d7e1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastlane/Helpers/Match.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ enum Match {
type: type.match,
readonly: .userDefined(!isForce),
appIdentifier: [environment.bundleId],
apiKey: .userDefined(Constant.apiKey),
apiKey: isForce ? .userDefined(Constant.apiKey) : .nil,
username: .userDefined(environment.appleUsername),
teamId: .userDefined(environment.appleTeamId),
gitUrl: Constant.matchURL,
Expand Down

0 comments on commit a3d7e1f

Please sign in to comment.