Files
paperless-mobile/android/fastlane/README.md

97 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
## Android
### android test
```sh
[bundle exec] fastlane android test
```
Runs all the tests
### android internal
```sh
[bundle exec] fastlane android internal
```
Submit a new internal build to Google Play
### android promote_to_alpha
```sh
[bundle exec] fastlane android promote_to_alpha
```
Promote internal track to alpha
### android alpha
```sh
[bundle exec] fastlane android alpha
```
Submit a new alpha build to Google Play
### android promote_to_beta
```sh
[bundle exec] fastlane android promote_to_beta
```
Promote alpha track to beta
### android beta
```sh
[bundle exec] fastlane android beta
```
Submit a new beta build to Google Play
### android promote_to_production
```sh
[bundle exec] fastlane android promote_to_production
```
Promote beta track to prod
### android production
```sh
[bundle exec] fastlane android production
```
Submit a new production build to Google Play
### android github
```sh
[bundle exec] fastlane android github
```
Builds apks and creates a new release on GitHub
----
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).