-
Notifications
You must be signed in to change notification settings - Fork 13
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 #421 from nimblehq/release/4.0.0
Release - 4.0.0
- Loading branch information
Showing
85 changed files
with
18,456 additions
and
945 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 |
---|---|---|
|
@@ -7,7 +7,7 @@ on: | |
jobs: | ||
review_pull_request: | ||
name: Pull request review by Danger | ||
runs-on: macOS-latest | ||
runs-on: macOS-12 | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
|
@@ -42,12 +42,12 @@ jobs: | |
run: bundle exec pod install | ||
|
||
- name: Build and Test | ||
run: bundle exec fastlane build_and_test | ||
run: bundle exec fastlane buildAndTest | ||
env: | ||
CI: true | ||
|
||
- name: Clean up previous code coverage report | ||
run: bundle exec fastlane clean_up_xcov | ||
run: bundle exec fastlane cleanUpOutput | ||
|
||
- name: Review pull request by Danger | ||
env: | ||
|
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 |
---|---|---|
|
@@ -24,7 +24,7 @@ jobs: | |
uses: norio-nomura/[email protected] | ||
with: | ||
args: --strict | ||
|
||
build: | ||
name: Build | ||
runs-on: macOS-latest | ||
|
@@ -48,7 +48,7 @@ jobs: | |
run: | | ||
yarn global add firebase-tools | ||
echo "$(yarn global bin)" >> $GITHUB_PATH | ||
- name: Bundle install | ||
# if: steps.bundleCache.outputs.cache-hit != 'true' | ||
run: bundle install | ||
|
@@ -67,15 +67,15 @@ jobs: | |
shell: bash | ||
|
||
- name: Build and Test | ||
run: bundle exec fastlane build_and_test | ||
run: bundle exec fastlane buildAndTest | ||
|
||
- name: Match Ad-hoc | ||
run: bundle exec fastlane sync_adhoc_signing | ||
run: bundle exec fastlane syncAdHocStagingCodeSigning | ||
env: | ||
MATCH_PASSWORD: ${{ secrets.MATCH_PASS }} | ||
|
||
- name: Build App and Distribute to Firebase | ||
run: bundle exec fastlane build_and_upload_staging_app | ||
run: bundle exec fastlane buildStagingAndUploadToFirebase | ||
env: | ||
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} | ||
|
||
|
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 |
---|---|---|
|
@@ -24,7 +24,7 @@ jobs: | |
uses: norio-nomura/[email protected] | ||
with: | ||
args: --strict | ||
|
||
build: | ||
name: Build | ||
runs-on: macOS-latest | ||
|
@@ -43,7 +43,7 @@ jobs: | |
uses: webfactory/[email protected] | ||
with: | ||
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | ||
|
||
- name: Bundle install | ||
run: bundle install | ||
|
||
|
@@ -61,15 +61,15 @@ jobs: | |
shell: bash | ||
|
||
- name: Build and Test | ||
run: bundle exec fastlane build_and_test | ||
run: bundle exec fastlane buildAndTest | ||
|
||
- name: Match Ad-hoc | ||
run: bundle exec fastlane sync_adhoc_production_signing | ||
run: bundle exec fastlane syncAdHocProductionCodeSigning | ||
env: | ||
MATCH_PASSWORD: ${{ secrets.MATCH_PASS }} | ||
|
||
- name: Build Production App and Distribute to Firebase | ||
run: bundle exec fastlane build_and_upload_production_app | ||
run: bundle exec fastlane buildProductionAndUploadToFirebase | ||
env: | ||
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} | ||
|
||
|
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 |
---|---|---|
|
@@ -24,7 +24,7 @@ jobs: | |
uses: norio-nomura/[email protected] | ||
with: | ||
args: --strict | ||
|
||
build: | ||
name: Build | ||
runs-on: macOS-latest | ||
|
@@ -44,7 +44,7 @@ jobs: | |
uses: webfactory/[email protected] | ||
with: | ||
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | ||
|
||
- name: Bundle install | ||
run: bundle install | ||
|
||
|
@@ -62,15 +62,15 @@ jobs: | |
shell: bash | ||
|
||
- name: Build and Test | ||
run: bundle exec fastlane build_and_test | ||
run: bundle exec fastlane buildAndTest | ||
|
||
- name: Match AppStore | ||
run: bundle exec fastlane sync_appstore_signing | ||
run: bundle exec fastlane syncAppStoreCodeSigning | ||
env: | ||
MATCH_PASSWORD: ${{ secrets.MATCH_PASS }} | ||
|
||
- name: Build App and Distribute to AppStore | ||
run: bundle exec fastlane build_and_upload_appstore_app | ||
run: bundle exec fastlane buildAndUploadToAppStore | ||
env: | ||
APPSTORE_CONNECT_API_KEY: ${{ secrets.APPSTORE_CONNECT_API_KEY }} | ||
|
||
|
File renamed without changes.
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 |
---|---|---|
|
@@ -16,4 +16,4 @@ jobs: | |
USER_NAME: team-nimblehq | ||
USER_EMAIL: [email protected] | ||
secrets: | ||
USER_TOKEN: ${{ secrets.NIMBLE_DEV_TOKEN }} | ||
USER_TOKEN: ${{ secrets.NIMBLE_DEV_TOKEN }} |
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ on: | |
jobs: | ||
Test: | ||
name: Test | ||
runs-on: macOS-latest | ||
runs-on: macOS-12 | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
|
@@ -25,6 +25,6 @@ jobs: | |
run: sh make.sh --bundle-id co.nimblehq.template --bundle-id-staging co.nimblehq.template.staging --project-name TemplateApp | ||
|
||
- name: Build and Test | ||
run: bundle exec fastlane build_and_test | ||
run: bundle exec fastlane buildAndTest | ||
env: | ||
CI: 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 |
---|---|---|
|
@@ -11,7 +11,7 @@ name: Test Upload Build to TestFlight | |
on: | ||
pull_request | ||
|
||
jobs: | ||
jobs: | ||
build: | ||
name: Build | ||
runs-on: macOS-12 | ||
|
@@ -30,7 +30,7 @@ jobs: | |
uses: webfactory/[email protected] | ||
with: | ||
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | ||
|
||
- name: Bundle install | ||
run: bundle install | ||
|
||
|
@@ -42,7 +42,7 @@ jobs: | |
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 | ||
|
||
|
@@ -54,16 +54,18 @@ jobs: | |
ISSUER_ID: ${{ secrets.ISSUER_ID }} | ||
|
||
- name: Set Up Test Project for App Store | ||
run: bundle exec fastlane set_up_test_project | ||
run: bundle exec fastlane setUpTestProject | ||
|
||
- name: Update Provision Profile | ||
run: bundle exec fastlane update_provision_settings | ||
run: bundle exec fastlane updateProvisionSettings | ||
env: | ||
MATCH_PASSWORD: ${{ secrets.MATCH_PASS }} | ||
|
||
- name: Build App and Distribute to AppStore | ||
run: bundle exec fastlane build_and_upload_appstore_app | ||
run: bundle exec fastlane buildAndUploadToAppStore | ||
env: | ||
APPSTORE_CONNECT_API_KEY: ${{ secrets.APPSTORE_CONNECT_API_KEY }} | ||
API_KEY_ID: ${{ secrets.API_KEY_ID }} | ||
ISSUER_ID: ${{ secrets.ISSUER_ID }} | ||
SKIP_FIREBASE_DSYM: "true" | ||
BUMP_APP_STORE_BUILD_NUMBER: "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
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 was deleted.
Oops, something went wrong.
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,7 @@ | ||
var appIdentifier: String { return "[[APP_IDENTIFIER]]" } // The bundle identifier of your app | ||
var appleID: String { return "[[APPLE_ID]]" } // Your Apple Developer Portal username | ||
|
||
|
||
|
||
// For more information about the Appfile, see: | ||
// https://docs.fastlane.tools/advanced/#appfile |
Oops, something went wrong.