2019-03-01 13:46:48 +08:00
|
|
|
fastlane documentation
|
2022-02-10 11:11:26 +08:00
|
|
|
----
|
|
|
|
|
2019-03-01 13:46:48 +08:00
|
|
|
# Installation
|
|
|
|
|
|
|
|
Make sure you have the latest version of the Xcode command line tools installed:
|
|
|
|
|
2022-02-10 11:11:26 +08:00
|
|
|
```sh
|
2019-03-01 13:46:48 +08:00
|
|
|
xcode-select --install
|
|
|
|
```
|
|
|
|
|
2022-02-10 11:11:26 +08:00
|
|
|
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)
|
2019-03-01 13:46:48 +08:00
|
|
|
|
|
|
|
# Available Actions
|
2022-02-10 11:11:26 +08:00
|
|
|
|
2019-08-16 15:30:46 +08:00
|
|
|
## Android
|
2022-02-10 11:11:26 +08:00
|
|
|
|
2019-08-16 15:30:46 +08:00
|
|
|
### android beta
|
2022-02-10 11:11:26 +08:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane android beta
|
2019-08-16 15:30:46 +08:00
|
|
|
```
|
2022-02-10 11:11:26 +08:00
|
|
|
|
2019-08-16 15:30:46 +08:00
|
|
|
Deploy to play store
|
2022-02-10 11:11:26 +08:00
|
|
|
|
2019-09-24 15:21:37 +08:00
|
|
|
### android build_github
|
2022-02-10 11:11:26 +08:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane android build_github
|
2019-09-24 15:21:37 +08:00
|
|
|
```
|
2022-02-10 11:11:26 +08:00
|
|
|
|
2019-09-24 15:21:37 +08:00
|
|
|
Deploy to github release
|
2022-02-10 11:11:26 +08:00
|
|
|
|
2019-08-16 15:30:46 +08:00
|
|
|
### android build
|
2022-02-10 11:11:26 +08:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane android build
|
2019-08-16 15:30:46 +08:00
|
|
|
```
|
2022-02-10 11:11:26 +08:00
|
|
|
|
2019-08-16 15:30:46 +08:00
|
|
|
Compile the project
|
2022-02-10 11:11:26 +08:00
|
|
|
|
2019-08-16 15:30:46 +08:00
|
|
|
### android update_version
|
2022-02-10 11:11:26 +08:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane android update_version
|
2019-08-16 15:30:46 +08:00
|
|
|
```
|
2022-02-10 11:11:26 +08:00
|
|
|
|
2019-08-16 15:30:46 +08:00
|
|
|
|
|
|
|
|
|
|
|
----
|
|
|
|
|
2022-02-10 11:11:26 +08:00
|
|
|
|
2019-03-01 13:46:48 +08:00
|
|
|
## iOS
|
2022-02-10 11:11:26 +08:00
|
|
|
|
2019-03-01 13:46:48 +08:00
|
|
|
### ios beta
|
2022-02-10 11:11:26 +08:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane ios beta
|
2019-03-01 13:46:48 +08:00
|
|
|
```
|
2022-02-10 11:11:26 +08:00
|
|
|
|
2019-03-01 13:46:48 +08:00
|
|
|
Deploy to testflight
|
2022-02-10 11:11:26 +08:00
|
|
|
|
2019-03-01 13:46:48 +08:00
|
|
|
### ios build
|
2022-02-10 11:11:26 +08:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane ios build
|
2019-03-01 13:46:48 +08:00
|
|
|
```
|
2022-02-10 11:11:26 +08:00
|
|
|
|
2019-03-01 13:46:48 +08:00
|
|
|
Compile the project
|
2022-02-10 11:11:26 +08:00
|
|
|
|
2019-03-01 13:46:48 +08:00
|
|
|
### ios provision
|
2022-02-10 11:11:26 +08:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane ios provision
|
2019-03-01 13:46:48 +08:00
|
|
|
```
|
2022-02-10 11:11:26 +08:00
|
|
|
|
2019-03-01 13:46:48 +08:00
|
|
|
Install provisioning profiles using match
|
2022-02-10 11:11:26 +08:00
|
|
|
|
2019-08-16 14:44:38 +08:00
|
|
|
### ios update_version
|
2022-02-10 11:11:26 +08:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane ios update_version
|
2019-08-16 14:44:38 +08:00
|
|
|
```
|
2022-02-10 11:11:26 +08:00
|
|
|
|
|
|
|
|
2019-08-16 14:44:38 +08:00
|
|
|
|
|
|
|
### ios testflight_prune_dry
|
2022-02-10 11:11:26 +08:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane ios testflight_prune_dry
|
2019-08-16 14:44:38 +08:00
|
|
|
```
|
2022-02-10 11:11:26 +08:00
|
|
|
|
|
|
|
|
2019-08-16 14:44:38 +08:00
|
|
|
|
|
|
|
### ios testflight_prune
|
2022-02-10 11:11:26 +08:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane ios testflight_prune
|
2019-08-16 14:44:38 +08:00
|
|
|
```
|
|
|
|
|
2019-03-01 13:46:48 +08:00
|
|
|
|
2022-02-10 11:11:26 +08:00
|
|
|
|
2019-03-01 13:46:48 +08:00
|
|
|
----
|
|
|
|
|
2022-02-10 11:11:26 +08:00
|
|
|
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).
|