forked from CruGlobal/mpdx-ios-client-example-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
147 additions
and
1 deletion.
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
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 +1,3 @@ | ||
git_url("https://github.com/Wycliffe-USA/SEA-Team-Apple-App-Code-Signing") | ||
app_identifier("org.wycliffe.mypd") | ||
username("[email protected]") |
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,144 @@ | ||
fastlane documentation | ||
---- | ||
|
||
# Installation | ||
|
||
Make sure you have the latest version of the Xcode command line tools installed: | ||
|
||
```sh | ||
xcode-select --install | ||
``` | ||
|
||
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane) | ||
|
||
# Available Actions | ||
|
||
## iOS | ||
|
||
### ios release | ||
|
||
```sh | ||
[bundle exec] fastlane ios release | ||
``` | ||
|
||
Push a new release build to the App Store | ||
|
||
### ios beta | ||
|
||
```sh | ||
[bundle exec] fastlane ios beta | ||
``` | ||
|
||
Push a new (beta) release build to TestFlight | ||
|
||
### ios cru_download_localizations | ||
|
||
```sh | ||
[bundle exec] fastlane ios cru_download_localizations | ||
``` | ||
|
||
Download latest localization files from Onesky | ||
|
||
### ios cru_commit_localization_files | ||
|
||
```sh | ||
[bundle exec] fastlane ios cru_commit_localization_files | ||
``` | ||
|
||
Commit downloaded localization files to default branch and push to remote | ||
|
||
### ios cru_build_app | ||
|
||
```sh | ||
[bundle exec] fastlane ios cru_build_app | ||
``` | ||
|
||
|
||
|
||
### ios cru_build_adhoc | ||
|
||
```sh | ||
[bundle exec] fastlane ios cru_build_adhoc | ||
``` | ||
|
||
|
||
|
||
### ios cru_fetch_certs | ||
|
||
```sh | ||
[bundle exec] fastlane ios cru_fetch_certs | ||
``` | ||
|
||
|
||
|
||
### ios cru_update_commit | ||
|
||
```sh | ||
[bundle exec] fastlane ios cru_update_commit | ||
``` | ||
|
||
|
||
|
||
### ios cru_bump_version_number | ||
|
||
```sh | ||
[bundle exec] fastlane ios cru_bump_version_number | ||
``` | ||
|
||
|
||
|
||
### ios cru_notify_users | ||
|
||
```sh | ||
[bundle exec] fastlane ios cru_notify_users | ||
``` | ||
|
||
|
||
|
||
### ios cru_push_release_to_github | ||
|
||
```sh | ||
[bundle exec] fastlane ios cru_push_release_to_github | ||
``` | ||
|
||
|
||
|
||
### ios cru_shared_lane_run_tests | ||
|
||
```sh | ||
[bundle exec] fastlane ios cru_shared_lane_run_tests | ||
``` | ||
|
||
|
||
|
||
### ios cru_shared_lane_download_and_commit_latest_one_sky_localizations | ||
|
||
```sh | ||
[bundle exec] fastlane ios cru_shared_lane_download_and_commit_latest_one_sky_localizations | ||
``` | ||
|
||
|
||
|
||
### ios cru_shared_lane_increment_xcode_project_build_number | ||
|
||
```sh | ||
[bundle exec] fastlane ios cru_shared_lane_increment_xcode_project_build_number | ||
``` | ||
|
||
|
||
|
||
### ios cru_shared_lane_build_and_deploy_for_testflight_release | ||
|
||
```sh | ||
[bundle exec] fastlane ios cru_shared_lane_build_and_deploy_for_testflight_release | ||
``` | ||
|
||
|
||
|
||
---- | ||
|
||
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run. | ||
|
||
More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools). | ||
|
||
The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools). |