From c5c36b1f85cb7148dbeaf996f484ce338ace5a06 Mon Sep 17 00:00:00 2001 From: Sk Niyaj Ali Date: Sat, 7 Sep 2024 04:58:34 +0530 Subject: [PATCH] Attempt#6 - Fixing Release Workflow Error --- Gemfile | 5 +---- Gemfile.lock | 2 -- fastlane/PluginFile | 5 ----- fastlane/README.md | 48 +++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 49 insertions(+), 11 deletions(-) delete mode 100644 fastlane/PluginFile create mode 100644 fastlane/README.md diff --git a/Gemfile b/Gemfile index 1e4d11c03..adc90d98c 100644 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,3 @@ source "https://rubygems.org" -gem "fastlane" - -plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile') -eval_gemfile(plugins_path) if File.exist?(plugins_path) \ No newline at end of file +gem "fastlane" \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock index 3b2e878c9..da23f9ba0 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -109,7 +109,6 @@ GEM xcodeproj (>= 1.13.0, < 2.0.0) xcpretty (~> 0.3.0) xcpretty-travis-formatter (>= 0.0.3, < 2.0.0) - fastlane-plugin-increment_version_code (0.4.3) gh_inspector (1.1.3) google-apis-androidpublisher_v3 (0.54.0) google-apis-core (>= 0.11.0, < 2.a) @@ -215,7 +214,6 @@ PLATFORMS DEPENDENCIES fastlane - fastlane-plugin-increment_version_code BUNDLED WITH 2.5.18 diff --git a/fastlane/PluginFile b/fastlane/PluginFile deleted file mode 100644 index 32ea0b1fb..000000000 --- a/fastlane/PluginFile +++ /dev/null @@ -1,5 +0,0 @@ -# Autogenerated by fastlane -# -# Ensure this file is checked in to source control! - -gem 'fastlane-plugin-increment_version_code' \ No newline at end of file diff --git a/fastlane/README.md b/fastlane/README.md new file mode 100644 index 000000000..f6333c179 --- /dev/null +++ b/fastlane/README.md @@ -0,0 +1,48 @@ +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 deploy_internal + +```sh +[bundle exec] fastlane android deploy_internal +``` + +Deploy internal tracks to Google Play + +### android promote_to_beta + +```sh +[bundle exec] fastlane android promote_to_beta +``` + +Promote internal tracks to beta on Google Play + +### android promote_to_production + +```sh +[bundle exec] fastlane android promote_to_production +``` + +Promote beta tracks to production on Google Play + +---- + +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).