1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00
osu-lazer/fastlane/README.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

110 lines
1.5 KiB
Markdown
Raw Normal View History

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