Automatic fastlane Readme update
This commit is contained in:
parent
af94dd615e
commit
403285e46f
|
@ -1,25 +1,26 @@
|
||||||
fastlane documentation
|
fastlane documentation
|
||||||
================
|
----
|
||||||
|
|
||||||
# Installation
|
# Installation
|
||||||
|
|
||||||
Make sure you have the latest version of the Xcode command line tools installed:
|
Make sure you have the latest version of the Xcode command line tools installed:
|
||||||
|
|
||||||
```
|
```sh
|
||||||
xcode-select --install
|
xcode-select --install
|
||||||
```
|
```
|
||||||
|
|
||||||
Install _fastlane_ using
|
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)
|
||||||
```
|
|
||||||
[sudo] gem install fastlane -NV
|
|
||||||
```
|
|
||||||
or alternatively using `brew install fastlane`
|
|
||||||
|
|
||||||
# Available Actions
|
# Available Actions
|
||||||
|
|
||||||
## iOS
|
## iOS
|
||||||
|
|
||||||
### ios patch
|
### ios patch
|
||||||
|
|
||||||
|
```sh
|
||||||
|
[bundle exec] fastlane ios patch
|
||||||
```
|
```
|
||||||
fastlane ios patch
|
|
||||||
```
|
|
||||||
This does the following:
|
This does the following:
|
||||||
|
|
||||||
|
|
||||||
|
@ -29,10 +30,13 @@ This does the following:
|
||||||
- Ensures Cocoapods compatibility
|
- Ensures Cocoapods compatibility
|
||||||
|
|
||||||
- Bumps the patch version
|
- Bumps the patch version
|
||||||
|
|
||||||
### ios minor
|
### ios minor
|
||||||
|
|
||||||
|
```sh
|
||||||
|
[bundle exec] fastlane ios minor
|
||||||
```
|
```
|
||||||
fastlane ios minor
|
|
||||||
```
|
|
||||||
This does the following:
|
This does the following:
|
||||||
|
|
||||||
|
|
||||||
|
@ -42,10 +46,13 @@ This does the following:
|
||||||
- Ensures Cocoapods compatibility
|
- Ensures Cocoapods compatibility
|
||||||
|
|
||||||
- Bumps the minor version
|
- Bumps the minor version
|
||||||
|
|
||||||
### ios major
|
### ios major
|
||||||
|
|
||||||
|
```sh
|
||||||
|
[bundle exec] fastlane ios major
|
||||||
```
|
```
|
||||||
fastlane ios major
|
|
||||||
```
|
|
||||||
This does the following:
|
This does the following:
|
||||||
|
|
||||||
|
|
||||||
|
@ -55,19 +62,27 @@ This does the following:
|
||||||
- Ensures Cocoapods compatibility
|
- Ensures Cocoapods compatibility
|
||||||
|
|
||||||
- Bumps the major version
|
- Bumps the major version
|
||||||
|
|
||||||
### ios test
|
### ios test
|
||||||
```
|
|
||||||
fastlane ios test
|
```sh
|
||||||
|
[bundle exec] fastlane ios test
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### ios submit_pod
|
### ios submit_pod
|
||||||
|
|
||||||
|
```sh
|
||||||
|
[bundle exec] fastlane ios submit_pod
|
||||||
```
|
```
|
||||||
fastlane ios submit_pod
|
|
||||||
```
|
|
||||||
Push the repo to remote and submits the Pod to the given spec repository. Do this after running update to run tests, bump versions, and commit changes.
|
Push the repo to remote and submits the Pod to the given spec repository. Do this after running update to run tests, bump versions, and commit changes.
|
||||||
|
|
||||||
----
|
----
|
||||||
|
|
||||||
This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run.
|
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).
|
||||||
|
|
Loading…
Reference in New Issue