From b08fca1d3f71ffa6d433dee157e6c8400f7f0d2a Mon Sep 17 00:00:00 2001 From: onevcat Date: Tue, 31 Oct 2023 12:38:43 +0900 Subject: [PATCH] Do not sign on CI --- fastlane/Fastfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 1b2a3b01..94cbc689 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -162,7 +162,9 @@ platform :ios do include_debug_symbols: true, xcframework_output_directory: output_path ) - Actions.sh("codesign --timestamp -v --sign 'Apple Distribution: LINE Corporation (VUTU7AKEUR)' ../#{output_path}/LineSDK.xcframework") + unless is_ci + Actions.sh("codesign --timestamp -v --sign 'Apple Distribution: LINE Corporation (VUTU7AKEUR)' ../#{output_path}/LineSDK.xcframework") + end artifact_paths.push(ENV["XCFRAMEWORK_OUTPUT_PATH"]) create_xcframework( @@ -173,7 +175,9 @@ platform :ios do include_debug_symbols: true, xcframework_output_directory: output_path ) - Actions.sh("codesign --timestamp -v --sign 'Apple Distribution: LINE Corporation (VUTU7AKEUR)' ../#{output_path}/LineSDKObjC.xcframework") + unless is_ci + Actions.sh("codesign --timestamp -v --sign 'Apple Distribution: LINE Corporation (VUTU7AKEUR)' ../#{output_path}/LineSDKObjC.xcframework") + end artifact_paths.push(ENV["XCFRAMEWORK_OUTPUT_PATH"]) zipped_files = []