From 2c1f32ba81cb91f1c8fe3fd18122a5b908c2f843 Mon Sep 17 00:00:00 2001 From: tooomm Date: Mon, 8 Jun 2026 20:32:35 +0200 Subject: [PATCH] Update sign_macos_bundle.sh --- .ci/sign_macos_bundle.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.ci/sign_macos_bundle.sh b/.ci/sign_macos_bundle.sh index 60ac7b3c7..9e73fe87d 100755 --- a/.ci/sign_macos_bundle.sh +++ b/.ci/sign_macos_bundle.sh @@ -23,7 +23,7 @@ fi APP_BUNDLE_PATH="$1" # Verify that app bundle exists -if [[ ! -e "$APP_BUNDLE_PATH" ]]; then +if [[ ! -f "$APP_BUNDLE_PATH" ]]; then echo "::error file=$0::App bundle not found at: $APP_BUNDLE_PATH" exit 1 fi @@ -47,7 +47,6 @@ fi # Sign app bundle if [[ -n "$MACOS_CERTIFICATE_NAME" ]]; then echo "::group::Sign app bundle" - security unlock-keychain -p "$MACOS_CI_KEYCHAIN_PWD" build.keychain /usr/bin/codesign --sign="$MACOS_CERTIFICATE_NAME" --entitlements=".ci/macos.entitlements" --options=runtime --force --deep --timestamp --verbose "$APP_BUNDLE_PATH" echo "::endgroup::" else