-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #540 from nimblehq/feature/454-use-appStore-Connec…
…tApiKey [#454] Use appStoreConnectApiKey() for fastlane match
- Loading branch information
Showing
4 changed files
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
API_KEY_ID="" | ||
ISSUER_ID="" | ||
APPSTORE_CONNECT_API_KEY="" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,12 @@ enum Constant { | |
static let appleProductionTeamId = "<#teamId#>" | ||
static let keychainName = "{PROJECT_NAME}_keychain" | ||
static let matchURL = "[email protected]:{organization}/{repo}.git" | ||
static let apiKey: [String: Any] = [ | ||
"key_id" : Secret.appStoreKeyIdKey, | ||
"issuer_id": Secret.appStoreIssuerIdKey, | ||
"key": Secret.appstoreConnectAPIKey, | ||
"in_house": false | ||
] | ||
|
||
// MARK: - Path | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters