Skip to content

Commit 51599bd

Browse files
codesign all binaries
1 parent b6d452c commit 51599bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/make.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ jobs:
187187
security unlock-keychain -p $MACOS_KEYCHAIN_PWD build.keychain
188188
security import certificate.p12 -k build.keychain -P $MACOS_CERTIFICATE_PWD -T /usr/bin/codesign
189189
security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k $MACOS_KEYCHAIN_PWD build.keychain
190-
/usr/bin/codesign --deep --force --verify --verbose --sign "$MACOS_CODESIGN_IDENT" --timestamp --options runtime $CEDEV_BIN/*
190+
find "${CEDEV}" -type f -perm +111 -print0 | xargs -0 -I {} /usr/bin/codesign --deep --force --verify --verbose --sign "$MACOS_CODESIGN_IDENT" --timestamp --options runtime {}
191191
192192
- name: "[macOS] Create the DMG"
193193
if: runner.os == 'macOS'

0 commit comments

Comments
 (0)