From 3762d9166b8d83e9649e7b325da72193e9952595 Mon Sep 17 00:00:00 2001 From: Lei Nelissen Date: Tue, 28 Jul 2020 11:42:43 +0200 Subject: [PATCH] Update fastlane syntax --- fastlane/Fastfile | 5 ++++- fastlane/README.md | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 fastlane/README.md diff --git a/fastlane/Fastfile b/fastlane/Fastfile index eec0289..e68b2d5 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -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", diff --git a/fastlane/README.md b/fastlane/README.md new file mode 100644 index 0000000..f913afb --- /dev/null +++ b/fastlane/README.md @@ -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).