mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-06-18 20:50:54 -04:00
* Add fastlane script to download app reviews * Add spaces to parens * Use double quotes * Rubocop autocorrect
145 lines
1.6 KiB
Markdown
145 lines
1.6 KiB
Markdown
fastlane documentation
|
|
----
|
|
|
|
# Installation
|
|
|
|
Make sure you have the latest version of the Xcode command line tools installed:
|
|
|
|
```sh
|
|
xcode-select --install
|
|
```
|
|
|
|
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)
|
|
|
|
# Available Actions
|
|
|
|
### tag
|
|
|
|
```sh
|
|
[bundle exec] fastlane tag
|
|
```
|
|
|
|
|
|
|
|
### build
|
|
|
|
```sh
|
|
[bundle exec] fastlane build
|
|
```
|
|
|
|
|
|
|
|
### clean
|
|
|
|
```sh
|
|
[bundle exec] fastlane clean
|
|
```
|
|
|
|
|
|
|
|
### release
|
|
|
|
```sh
|
|
[bundle exec] fastlane release
|
|
```
|
|
|
|
|
|
|
|
### internal
|
|
|
|
```sh
|
|
[bundle exec] fastlane internal
|
|
```
|
|
|
|
|
|
|
|
### beta
|
|
|
|
```sh
|
|
[bundle exec] fastlane beta
|
|
```
|
|
|
|
|
|
|
|
### download_app_store_reviews
|
|
|
|
```sh
|
|
[bundle exec] fastlane download_app_store_reviews
|
|
```
|
|
|
|
|
|
|
|
### prod
|
|
|
|
```sh
|
|
[bundle exec] fastlane prod
|
|
```
|
|
|
|
|
|
|
|
----
|
|
|
|
|
|
## Android
|
|
|
|
### android upload_metadata
|
|
|
|
```sh
|
|
[bundle exec] fastlane android upload_metadata
|
|
```
|
|
|
|
Upload description to Google Play
|
|
|
|
### android build
|
|
|
|
```sh
|
|
[bundle exec] fastlane android build
|
|
```
|
|
|
|
|
|
|
|
### android clean
|
|
|
|
```sh
|
|
[bundle exec] fastlane android clean
|
|
```
|
|
|
|
|
|
|
|
----
|
|
|
|
|
|
## iOS
|
|
|
|
### ios upload_metadata
|
|
|
|
```sh
|
|
[bundle exec] fastlane ios upload_metadata
|
|
```
|
|
|
|
Upload app metadata to App Store
|
|
|
|
### ios build
|
|
|
|
```sh
|
|
[bundle exec] fastlane ios build
|
|
```
|
|
|
|
|
|
|
|
### ios clean
|
|
|
|
```sh
|
|
[bundle exec] fastlane ios clean
|
|
```
|
|
|
|
|
|
|
|
----
|
|
|
|
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).
|