-
Notifications
You must be signed in to change notification settings - Fork 48
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
1 parent
d641525
commit 464db05
Showing
2 changed files
with
51 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,86 @@ | ||
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 | ||
### test_ios15 | ||
``` | ||
fastlane test_ios15 | ||
``` | ||
|
||
### test_ios14 | ||
``` | ||
fastlane test_ios14 | ||
``` | ||
|
||
### test_tvos15 | ||
```sh | ||
[bundle exec] fastlane test_ios14 | ||
``` | ||
fastlane test_tvos15 | ||
|
||
|
||
|
||
### test_ios15 | ||
|
||
```sh | ||
[bundle exec] fastlane test_ios15 | ||
``` | ||
|
||
|
||
|
||
### test_tvos14 | ||
|
||
```sh | ||
[bundle exec] fastlane test_tvos14 | ||
``` | ||
fastlane test_tvos14 | ||
|
||
|
||
|
||
### test_tvos15 | ||
|
||
```sh | ||
[bundle exec] fastlane test_tvos15 | ||
``` | ||
|
||
|
||
|
||
### pod_lint | ||
``` | ||
fastlane pod_lint | ||
|
||
```sh | ||
[bundle exec] fastlane pod_lint | ||
``` | ||
|
||
|
||
|
||
### generate_code_coverage | ||
|
||
```sh | ||
[bundle exec] fastlane generate_code_coverage | ||
``` | ||
fastlane generate_code_coverage | ||
``` | ||
|
||
|
||
|
||
### build_macos_catalyst | ||
|
||
```sh | ||
[bundle exec] fastlane build_macos_catalyst | ||
``` | ||
fastlane build_macos_catalyst | ||
``` | ||
|
||
|
||
|
||
### release | ||
|
||
```sh | ||
[bundle exec] fastlane release | ||
``` | ||
fastlane 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). | ||
|
||
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). |