-
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 #475 from nimblehq/release/4.4.0
Release - 4.4.0
- Loading branch information
Showing
16 changed files
with
218 additions
and
74 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
- Close #https://github.com/nimblehq/ios-templates/issues/ | ||
- Close # | ||
|
||
## What happened 👀 | ||
|
||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
name: Test Upload Build to Firebase | ||
|
||
# SECRETS needed: | ||
### SSH_PRIVATE_KEY for Match Repo | ||
### MATCH_PASS | ||
### FIREBASE_TOKEN | ||
### STAGING_FIREBASE_APP_ID | ||
### TEAM_ID | ||
|
||
on: | ||
pull_request | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
runs-on: macOS-latest | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install SSH key | ||
uses: webfactory/[email protected] | ||
with: | ||
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | ||
|
||
- name: Install Firebase-Tools | ||
run: | | ||
yarn global add firebase-tools | ||
echo "$(yarn global bin)" >> $GITHUB_PATH | ||
- name: Bundle install | ||
run: bundle install | ||
|
||
- 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: Start Install Script for Template App | ||
run: sh make.sh --bundle-id co.nimblehq.ios.templates --bundle-id-staging co.nimblehq.ios.templates.staging --project-name TemplateApp | ||
|
||
- name: Start Setup Script for Template App Firebase Upload | ||
run: sh set_up_test_firebase.sh | ||
env: | ||
MATCH_REPO: ${{ secrets.MATCH_REPO }} | ||
STAGING_FIREBASE_APP_ID: ${{ secrets.STAGING_FIREBASE_APP_ID }} | ||
TEAM_ID: ${{ secrets.TEAM_ID }} | ||
|
||
- name: Set Up Test Project for Firebase | ||
run: bundle exec fastlane setUpTestProject | ||
|
||
- name: Sync Ad Hoc Code Signing | ||
run: bundle exec fastlane syncAdHocStagingCodeSigning | ||
env: | ||
MATCH_PASSWORD: ${{ secrets.MATCH_PASS }} | ||
|
||
- name: Build App and Distribute to Firebase | ||
run: bundle exec fastlane buildStagingAndUploadToFirebase | ||
env: | ||
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} | ||
|
||
- name: Upload Artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ${{ format('v{0}({1})-{2}', env.VERSION_NUMBER, env.BUILD_NUMBER, env.TAG_TYPE) }} | ||
path: | | ||
${{ env.IPA_OUTPUT_PATH }} | ||
${{ env.DSYM_OUTPUT_PATH }} | ||
env: | ||
TAG_TYPE: Staging_Firebase |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,8 +22,10 @@ enum Constant { | |
|
||
// MARK: - Match | ||
|
||
static let userName = "<#userName#>" | ||
static let teamId = "<#teamId#>" | ||
static let appleStagingUserName = "<#userName#>" | ||
static let appleStagingTeamId = "<#teamId#>" | ||
static let appleProductionUserName = "<#userName#>" | ||
static let appleProductionTeamId = "<#teamId#>" | ||
static let keychainName = "github_action_keychain" | ||
static let matchURL = "[email protected]:{organization}/{repo}.git" | ||
|
||
|
@@ -79,11 +81,16 @@ extension Constant { | |
enum Environment: String { | ||
|
||
case staging = "Staging" | ||
case production = "" | ||
case production = "Production" | ||
|
||
var productName: String { "\(Constant.projectName) \(rawValue)".trimmed } | ||
|
||
var scheme: String { "\(Constant.projectName) \(rawValue)".trimmed } | ||
var scheme: String { | ||
switch self { | ||
case .staging: return "\(Constant.projectName) \(rawValue)".trimmed | ||
case .production: return Constant.projectName.trimmed | ||
} | ||
} | ||
|
||
var bundleId: String { | ||
switch self { | ||
|
@@ -112,17 +119,55 @@ extension Constant { | |
let outputDirectoryURL = URL(fileURLWithPath: Constant.outputPath) | ||
return outputDirectoryURL.appendingPathComponent(productName + ".app" + Constant.dSYMSuffix).relativePath | ||
} | ||
|
||
var appleUsername: String { | ||
switch self { | ||
case .staging: return Constant.appleStagingUserName | ||
case .production: return Constant.appleProductionUserName | ||
} | ||
} | ||
|
||
var appleTeamId: String { | ||
switch self { | ||
case .staging: return Constant.appleStagingTeamId | ||
case .production: return Constant.appleProductionTeamId | ||
} | ||
} | ||
} | ||
|
||
enum BuildType: String { | ||
|
||
case development | ||
case adHoc = "ad-hoc" | ||
case appStore = "app-store" | ||
|
||
var value: String { return rawValue } | ||
|
||
|
||
var match: String { | ||
switch self { | ||
case .development: return "development" | ||
case .adHoc: return "adhoc" | ||
case .appStore: return "appstore" | ||
} | ||
} | ||
|
||
var configuration: String { | ||
switch self { | ||
case .development: return "Debug" | ||
case .adHoc, .appStore: return "Release" | ||
} | ||
} | ||
|
||
var codeSignIdentity: String { | ||
switch self { | ||
case .development: return "iPhone Developer" | ||
case .adHoc, . appStore: return "iPhone Distribution" | ||
} | ||
} | ||
|
||
var method: String { | ||
switch self { | ||
case .development: return "Development" | ||
case .adHoc: return "AdHoc" | ||
case .appStore: return "AppStore" | ||
} | ||
|
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
Oops, something went wrong.