From 5dcd51bf7f6b8d3258ba7a031fc62a4c791eab3c Mon Sep 17 00:00:00 2001 From: "J.D. Purcell" Date: Sat, 30 Nov 2024 11:29:02 -0500 Subject: [PATCH] CI: Fix macOS code signing for Qt 6.8 --- dist/scripts/macdeploy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/scripts/macdeploy.sh b/dist/scripts/macdeploy.sh index d4d5b9aa..df5ba411 100755 --- a/dist/scripts/macdeploy.sh +++ b/dist/scripts/macdeploy.sh @@ -40,9 +40,9 @@ fi echo "Running codesign" if [[ "$APPLE_NOTARIZE_REQUESTED" == "true" ]]; then APP_IDENTIFIER=$(/usr/libexec/PlistBuddy -c "Print CFBundleIdentifier" "qView.app/Contents/Info.plist") - codesign --sign "$CODESIGN_CERT_NAME" --deep --options runtime --timestamp "qView.app" + codesign --sign "$CODESIGN_CERT_NAME" --deep --force --options runtime --timestamp "qView.app" else - codesign --sign "$CODESIGN_CERT_NAME" --deep "qView.app" + codesign --sign "$CODESIGN_CERT_NAME" --deep --force "qView.app" fi echo "Creating disk image"