From 5d26a5395bed8163f365c1fd42866da73215d4b5 Mon Sep 17 00:00:00 2001 From: Lei Nelissen Date: Sat, 15 Jan 2022 17:35:28 +0100 Subject: [PATCH] Install JSON plugin for fastlane --- fastlane/Fastfile | 4 ++-- fastlane/Pluginfile | 1 + fastlane/README.md | 5 ----- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 2cfba1b..0111520 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -1,6 +1,6 @@ default_platform(:ios) -package = load_json(json_path: "../package.json") +package = load_json(json_path: "package.json") platform :ios do lane :beta do @@ -73,7 +73,7 @@ platform :android do task: "assembleRelease", properties: { 'versionName' => package["version"], - } + }, project_dir: "android" ) end diff --git a/fastlane/Pluginfile b/fastlane/Pluginfile index a152560..7bdc060 100644 --- a/fastlane/Pluginfile +++ b/fastlane/Pluginfile @@ -3,3 +3,4 @@ # Ensure this file is checked in to source control! gem 'fastlane-plugin-sentry' +gem 'fastlane-plugin-load_json' diff --git a/fastlane/README.md b/fastlane/README.md index a4813e6..1a16cad 100644 --- a/fastlane/README.md +++ b/fastlane/README.md @@ -16,11 +16,6 @@ or alternatively using `brew install fastlane` # Available Actions ## iOS -### ios alpha -``` -fastlane ios alpha -``` - ### ios beta ``` fastlane ios beta