Beam/fastlane/README.md

119 lines
1.4 KiB
Markdown
Raw Permalink Normal View History

2022-02-24 17:44:21 +02:00
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
2025-02-11 11:13:28 +00:00
### build_alpha
```sh
2025-02-11 11:13:28 +00:00
[bundle exec] fastlane build_alpha
```
### unit_tests
```sh
[bundle exec] fastlane unit_tests
```
### ui_tests
```sh
[bundle exec] fastlane ui_tests
2022-02-24 17:44:21 +02:00
```
### integration_tests
```sh
[bundle exec] fastlane integration_tests
```
### config_production
```sh
[bundle exec] fastlane config_production
```
### config_nightly
```sh
[bundle exec] fastlane config_nightly
```
### upload_dsyms_to_sentry
```sh
[bundle exec] fastlane upload_dsyms_to_sentry
```
### release_to_github
```sh
[bundle exec] fastlane release_to_github
```
### prepare_next_release
```sh
[bundle exec] fastlane prepare_next_release
```
### tag_nightly
```sh
[bundle exec] fastlane tag_nightly
```
2025-02-11 11:13:28 +00:00
### config_alpha
```sh
[bundle exec] fastlane config_alpha
```
### config_secrets
```sh
[bundle exec] fastlane config_secrets
```
2022-02-24 17:44:21 +02: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).