Skip to content

Commit

Permalink
Merge pull request #199 from line/feature/digital-signature
Browse files Browse the repository at this point in the history
Sign the xcframework artifacts with distribution cert
  • Loading branch information
onevcat authored Oct 31, 2023
2 parents 3aed465 + b08fca1 commit c40d431
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,9 @@ platform :ios do
include_debug_symbols: true,
xcframework_output_directory: output_path
)
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 @@ -172,6 +175,9 @@ platform :ios do
include_debug_symbols: true,
xcframework_output_directory: output_path
)
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 c40d431

Please sign in to comment.