v1.8.0 #429

Merged
LukeGus merged 198 commits from dev-1.8.0 into main 2025-11-05 16:36:16 +00:00
Showing only changes of commit a35debb81c - Show all commits

View File

@@ -175,11 +175,18 @@ jobs:
# Get signing identity
APP_IDENTITY=$(security find-identity -v -p codesigning $RUNNER_TEMP/app-signing.keychain-db | grep "Apple Distribution" | head -1 | cut -d'"' -f2)
INSTALLER_IDENTITY=$(security find-identity -v -p codesigning $RUNNER_TEMP/app-signing.keychain-db | grep "Mac Installer Distribution" | head -1 | cut -d'"' -f2)
INSTALLER_IDENTITY=$(security find-identity -v -p codesigning $RUNNER_TEMP/app-signing.keychain-db | grep "Installer" | head -1 | cut -d'"' -f2)
echo "Using app identity: $APP_IDENTITY"
echo "Using installer identity: $INSTALLER_IDENTITY"
if [ -z "$INSTALLER_IDENTITY" ]; then
echo "Available identities:"
security find-identity -v -p codesigning $RUNNER_TEMP/app-signing.keychain-db
echo "Error: Could not find installer identity"
exit 1
fi
# Sign helper apps first
codesign --force --sign "$APP_IDENTITY" \
--entitlements "build/entitlements.mas.inherit.plist" \