From 05b9b831170b4c48dbbb279702941cb4d4ce0987 Mon Sep 17 00:00:00 2001 From: Alexey Alter-Pesotskiy Date: Tue, 24 Sep 2024 10:06:11 +0100 Subject: [PATCH] [CI] Resolve fastlane git status issue --- Gemfile.lock | 4 ++-- fastlane/Fastfile | 10 ---------- fastlane/Pluginfile | 2 +- 3 files changed, 3 insertions(+), 13 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 9cdb7e098..e1585365b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -202,7 +202,7 @@ GEM bundler fastlane pry - fastlane-plugin-stream_actions (0.3.63) + fastlane-plugin-stream_actions (0.3.70) xctest_list (= 1.2.1) fastlane-plugin-versioning (0.5.2) ffi (1.17.0) @@ -430,7 +430,7 @@ DEPENDENCIES fastlane fastlane-plugin-create_xcframework fastlane-plugin-lizard - fastlane-plugin-stream_actions (= 0.3.63) + fastlane-plugin-stream_actions (= 0.3.70) fastlane-plugin-versioning jazzy json diff --git a/fastlane/Fastfile b/fastlane/Fastfile index bf2ae5eff..4ff5fbe0e 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -624,16 +624,6 @@ lane :sync_xcodeproj_references do end end -def select_files_from(files:, with_extension:, that_start_with:) - files.select do |f| - f.start_with?(*that_start_with) - end.map do |f| - f.split.drop(1).join(' ') - end.select do |f| - f.gsub(/['"]/, '').end_with?(with_extension) - end -end - desc 'Run fastlane linting' lane :rubocop do next unless is_check_required(sources: sources_matrix[:ruby], force_check: @force_check) diff --git a/fastlane/Pluginfile b/fastlane/Pluginfile index 5ac3f66f1..28209fbe4 100644 --- a/fastlane/Pluginfile +++ b/fastlane/Pluginfile @@ -1,3 +1,3 @@ gem 'fastlane-plugin-versioning' gem 'fastlane-plugin-create_xcframework' -gem 'fastlane-plugin-stream_actions', '0.3.63' +gem 'fastlane-plugin-stream_actions', '0.3.70'