We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6d452c commit 51599bdCopy full SHA for 51599bd
.github/workflows/make.yml
@@ -187,7 +187,7 @@ jobs:
187
security unlock-keychain -p $MACOS_KEYCHAIN_PWD build.keychain
188
security import certificate.p12 -k build.keychain -P $MACOS_CERTIFICATE_PWD -T /usr/bin/codesign
189
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/*
+ find "${CEDEV}" -type f -perm +111 -print0 | xargs -0 -I {} /usr/bin/codesign --deep --force --verify --verbose --sign "$MACOS_CODESIGN_IDENT" --timestamp --options runtime {}
191
192
- name: "[macOS] Create the DMG"
193
if: runner.os == 'macOS'
0 commit comments