From 6d6ad92bee59d9651cec08fdd29145e8f8672980 Mon Sep 17 00:00:00 2001 From: Oleksii Dykan Date: Tue, 25 Sep 2018 23:07:06 +0100 Subject: [PATCH] Force to use libraries when using cocoapods --- fastlane/Fastfile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 5dbe7c0..472d1d9 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -18,7 +18,10 @@ platform :ios do end def release(type) - pod_lib_lint + pod_lib_lint( + allow_warnings: true, + use_libraries: true, + ) podspec_name = "CodableFirebase.podspec" version = version_bump_podspec(path: podspec_name, bump_type: type) @@ -29,6 +32,9 @@ platform :ios do message: "#{version} release") add_git_tag(tag: "#{version}") push_to_git_remote - pod_push + pod_push( + allow_warnings: true, + use_libraries: true, + ) end end