Skip to content

Commit

Permalink
Do not sign on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
onevcat committed Oct 31, 2023
1 parent 9d11755 commit b08fca1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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 = []
Expand Down

0 comments on commit b08fca1

Please sign in to comment.