Skip to content

Commit ad7fe19

Browse files
committed
Skip codesigning release binaries
1 parent d2e2d97 commit ad7fe19

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

scripts/create-release-package.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,12 @@ def platforms(xcode_version)
2828
end
2929

3030
def create_xcframework(root, xcode_version, configuration, name)
31-
signing_identity = ENV['SIGNING_IDENTITY']
3231
prefix = "#{root}/#{xcode_version}"
3332
output = "#{prefix}/#{configuration}/#{name}.xcframework"
3433
files = Dir.glob "#{prefix}/build/#{configuration}/*/#{name}.xcframework/*/#{name}.framework"
3534

3635
sh 'xcodebuild', '-create-xcframework', '-allow-internal-distribution',
3736
'-output', output, *files.flat_map {|f| ['-framework', f]}
38-
sh 'codesign', '--timestamp', '-s', signing_identity, output
3937
end
4038

4139
def zip(name, *files)

0 commit comments

Comments
 (0)