Automatic fastlane Readme update

This commit is contained in:
Simon Fairbairn 2022-05-19 08:32:25 +01:00
parent af94dd615e
commit 403285e46f
1 changed files with 35 additions and 20 deletions

View File

@ -1,25 +1,26 @@
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 patch
```sh
[bundle exec] fastlane ios patch
```
fastlane ios patch
```
This does the following:
@ -29,10 +30,13 @@ This does the following:
- Ensures Cocoapods compatibility
- Bumps the patch version
### ios minor
```sh
[bundle exec] fastlane ios minor
```
fastlane ios minor
```
This does the following:
@ -42,10 +46,13 @@ This does the following:
- Ensures Cocoapods compatibility
- Bumps the minor version
### ios major
```sh
[bundle exec] fastlane ios major
```
fastlane ios major
```
This does the following:
@ -55,19 +62,27 @@ This does the following:
- Ensures Cocoapods compatibility
- Bumps the major version
### ios test
```
fastlane ios test
```sh
[bundle exec] fastlane ios test
```
### 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.
----
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).
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).