-
Notifications
You must be signed in to change notification settings - Fork 8
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
11 changed files
with
76 additions
and
38 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
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
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 |
---|---|---|
@@ -1,74 +1,104 @@ | ||
fastlane documentation | ||
================ | ||
---- | ||
|
||
# Installation | ||
|
||
Make sure you have the latest version of the Xcode command line tools installed: | ||
|
||
``` | ||
```sh | ||
xcode-select --install | ||
``` | ||
|
||
Install _fastlane_ using | ||
``` | ||
[sudo] gem install fastlane -NV | ||
``` | ||
or alternatively using `brew install fastlane` | ||
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane) | ||
|
||
# Available Actions | ||
|
||
## iOS | ||
|
||
### ios test | ||
|
||
```sh | ||
[bundle exec] fastlane ios test | ||
``` | ||
fastlane ios test | ||
``` | ||
|
||
Run tests: Run Unit & Functional tests with retries | ||
|
||
### ios format_check | ||
|
||
```sh | ||
[bundle exec] fastlane ios format_check | ||
``` | ||
fastlane ios format_check | ||
``` | ||
|
||
Check code format | ||
|
||
### ios format | ||
|
||
```sh | ||
[bundle exec] fastlane ios format | ||
``` | ||
fastlane ios format | ||
``` | ||
|
||
Format code | ||
|
||
### ios lint_swift | ||
|
||
```sh | ||
[bundle exec] fastlane ios lint_swift | ||
``` | ||
fastlane ios lint_swift | ||
``` | ||
|
||
Lint swift code | ||
|
||
### ios set_versions | ||
|
||
```sh | ||
[bundle exec] fastlane ios set_versions | ||
``` | ||
fastlane ios set_versions | ||
``` | ||
|
||
Sets marketing and bundle versions to a Xcode project | ||
|
||
### ios version_bump | ||
|
||
```sh | ||
[bundle exec] fastlane ios version_bump | ||
``` | ||
fastlane ios version_bump | ||
``` | ||
|
||
Sets cocoapods, marketing and bundle versions from a semver `version` and an optional `build` number | ||
|
||
### ios archive | ||
|
||
```sh | ||
[bundle exec] fastlane ios archive | ||
``` | ||
fastlane ios archive | ||
``` | ||
|
||
Generates Debug & Release frameworks zip archives | ||
|
||
### ios github_release | ||
|
||
```sh | ||
[bundle exec] fastlane ios github_release | ||
``` | ||
fastlane ios github_release | ||
``` | ||
|
||
|
||
|
||
### ios release_github | ||
|
||
```sh | ||
[bundle exec] fastlane ios release_github | ||
``` | ||
fastlane ios release_github | ||
``` | ||
|
||
Archive then release version to GitHub | ||
|
||
### ios release_cocoapods | ||
|
||
```sh | ||
[bundle exec] fastlane ios release_cocoapods | ||
``` | ||
fastlane ios release_cocoapods | ||
``` | ||
|
||
Release version to CocoaPods | ||
|
||
---- | ||
|
||
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). | ||
|
||
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). |