-
Notifications
You must be signed in to change notification settings - Fork 25
chore(fastlane:FastFile): iOS release on Firebase #52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
579eccf
chore(fastlane:FastFile): Configure gym for iOS builds
HekmatullahAmin 294be76
Change export_method from development to ad-hoc
HekmatullahAmin adcdc8a
chore(fastlane:FastFile) Automate iOS release to Firebase
HekmatullahAmin 73662ad
Add match for app signing
HekmatullahAmin 655e51d
clean up
HekmatullahAmin 4fd61ad
Pass match secrets to reusable workflow
HekmatullahAmin 11b0977
Add secrets for match and keychain, and create custom keychain in bui…
HekmatullahAmin b53c90a
clean up
HekmatullahAmin 7e86470
added git_url, username and storage_mode from Matchfile to ios_config.rb
HekmatullahAmin fe21a5e
chore: trigger CI
HekmatullahAmin 2bb0f8e
chore: trigger CI second time
HekmatullahAmin 2d058f5
chore: trigger CI third time
HekmatullahAmin 640c7bf
added git_branch
HekmatullahAmin 79eafba
added a comma
HekmatullahAmin 6a74b89
updated plugins
HekmatullahAmin 29b7783
renamed to match_git_basic_authorization in ios_config.rb
HekmatullahAmin fa2735f
added delete_keychain
HekmatullahAmin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -82,11 +82,19 @@ permissions: | |
| jobs: | ||
| pr_checks: | ||
| name: PR Checks | ||
| uses: openMF/mifos-x-actionhub/.github/workflows/[email protected] | ||
| secrets: inherit | ||
| uses: openMF/mifos-x-actionhub/.github/workflows/pr-check.yaml@main | ||
| with: | ||
| android_package_name: 'cmp-android' # <-- Change Your Android Package Name | ||
| desktop_package_name: 'cmp-desktop' # <-- Change Your Desktop Package Name | ||
| web_package_name: 'cmp-web' # <-- Change Your Web Package Name | ||
| ios_package_name: 'cmp-ios' # <-- Change Your iOS Package Name | ||
| build_ios: true # <-- Change to 'false' if you don't want to build iOS | ||
| keychain_name: 'ci-signing.keychain' | ||
| match_type: 'adhoc' | ||
| export_method: 'ad-hoc' | ||
| app_identifier: 'org.mifos.kmp.template' | ||
| provisioning_profile_name: 'match AdHoc org.mifos.kmp.template' | ||
| secrets: | ||
| MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }} | ||
| MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }} | ||
| KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }} | ||
This file contains hidden or 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 hidden or 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 hidden or 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
Binary file modified
BIN
-2.85 KB
(90%)
...project.xcworkspace/xcuserdata/hekmatullahamin.xcuserdatad/UserInterfaceState.xcuserstate
Binary file not shown.
This file contains hidden or 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 hidden or 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,15 +1,28 @@ | ||
| module FastlaneConfig | ||
| module IosConfig | ||
| FIREBASE_CONFIG = { | ||
| firebase_app_id: "1:728434912738:ios:shjhsa78392shja", | ||
| firebase_app_id: "1:728434912738:ios:1d81f8e53ca7a6f31a1dbb", | ||
| firebase_service_creds_file: "secrets/firebaseAppDistributionServiceCredentialsFile.json", | ||
| firebase_groups: "kmp-project-template-testers" | ||
| firebase_groups: "mifos-mobile-testers" | ||
| } | ||
|
|
||
| BUILD_CONFIG = { | ||
| project_path: "cmp-ios/iosApp.xcodeproj", | ||
| scheme: "iosApp", | ||
| output_directory: "cmp-ios/build" | ||
| output_name: "iosApp.ipa", | ||
| output_directory: "cmp-ios/build", | ||
| match_git_basic_authorization: "someBase64Code", | ||
| match_password: "somePassphrasePassword", | ||
| keychain_name: "ci-signing.keychain", | ||
| keychain_password: "someCustomKeychainPassword", | ||
| match_type: "adhoc", | ||
| app_identifier: "org.mifos.kmp.template", | ||
| export_method: "ad-hoc", | ||
| provisioning_profile_name: "match AdHoc org.mifos.kmp.template", | ||
| git_url: "https://github.com/openMF/ios-provisioning-profile", | ||
| git_branch: "master", | ||
| username: "[email protected]", | ||
| storage_mode: "git", | ||
| } | ||
| end | ||
| end | ||
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.