-
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.
[#546] Support adding new devices directly from Github Action
- Loading branch information
1 parent
11790f1
commit 48e388f
Showing
5 changed files
with
104 additions
and
7 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,67 @@ | ||
name: Test Add device and regenerate profiles with fastlane match | ||
|
||
# SECRETS needed: | ||
### SSH_PRIVATE_KEY for the match Repo | ||
### MATCH_PASSWORD | ||
### APPSTORE_CONNECT_API_KEY | ||
### API_KEY_ID | ||
### ISSUER_ID | ||
|
||
on: | ||
pull_request: | ||
workflow_dispatch: | ||
inputs: | ||
devices: | ||
description: 'JSON of devices. `{"Luka iPhone 6": "1234567890123456789012345678901234567890","Felix iPad Air 2": "abcdefghijklmnopqrstvuwxyzabcdefghijklmn"}`' | ||
required: true | ||
type: string | ||
platform: | ||
description: 'The platform' | ||
required: true | ||
default: 'ios' | ||
type: choice | ||
options: | ||
- ios | ||
- mac | ||
|
||
jobs: | ||
create_files: | ||
name: Create certificates and profiles | ||
runs-on: macOS-latest | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install SSH key | ||
uses: webfactory/[email protected] | ||
with: | ||
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | ||
|
||
- name: Cache Pods | ||
uses: actions/cache@v3 | ||
id: cocoapodCache | ||
with: | ||
path: Pods | ||
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-pods- | ||
- name: Bundle install | ||
run: bundle install | ||
|
||
- name: Add device and regenerate profiles with match | ||
run: bundle exec fastlane addDevicesGenerateProfiles | ||
env: | ||
MATCH_PASSWORD: ${{ secrets.MATCH_PASS }} | ||
DEVICES: ${{ inputs.devices }} | ||
APPSTORE_CONNECT_API_KEY: ${{ secrets.APPSTORE_CONNECT_API_KEY }} | ||
API_KEY_ID: ${{ secrets.API_KEY_ID }} | ||
ISSUER_ID: ${{ secrets.ISSUER_ID }} | ||
PLATFORM: ${{ inputs.platform }} | ||
|
||
- name: Clean up keychain | ||
if: ${{ always() }} | ||
run: bundle exec fastlane remove_keychain | ||
continue-on-error: true |
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,12 +28,20 @@ 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 | ||
] | ||
static let apiKey: [String: Any] = { | ||
var key = Secret.appstoreConnectAPIKey | ||
if let data = Data(base64Encoded: Secret.appstoreConnectAPIKey), | ||
let decodedKey = String(data: data, encoding: .utf8) { | ||
key = decodedKey | ||
} | ||
|
||
return [ | ||
"key_id" : Secret.appStoreKeyIdKey, | ||
"issuer_id": Secret.appStoreIssuerIdKey, | ||
"key": key, | ||
"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
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