Update fastlane syntax

This commit is contained in:
Lei Nelissen
2020-07-28 11:42:43 +02:00
parent 48dd8c23aa
commit 3762d9166b
2 changed files with 42 additions and 1 deletions

View File

@@ -2,7 +2,10 @@ default_platform(:ios)
platform :ios do
lane :beta do
enable_automatic_code_signing
enable_automatic_code_signing(
use_automatic_signing: true,
path: "ios/JellyfinAudioPlayer.xcodeproj"
)
build_app(
scheme: "JellyfinAudioPlayer",
export_method: "development",

38
fastlane/README.md Normal file
View File

@@ -0,0 +1,38 @@
fastlane documentation
================
# Installation
Make sure you have the latest version of the Xcode command line tools installed:
```
xcode-select --install
```
Install _fastlane_ using
```
[sudo] gem install fastlane -NV
```
or alternatively using `brew install fastlane`
# Available Actions
## iOS
### ios beta
```
fastlane ios beta
```
----
## Android
### android beta
```
fastlane android beta
```
Generate beta build
----
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).