From f9e8dbdd4e0f3aad3e1a2c9717e71c1f0d216c82 Mon Sep 17 00:00:00 2001 From: AJ Beck Date: Mon, 7 Sep 2026 10:20:54 +0100 Subject: [PATCH] fix(release): parse exported CLI entitlements as XML --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9c3c61f..abdc36f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -266,7 +266,7 @@ jobs: exit 1 fi - codesign -d --entitlements - "$cli_app" > "$cli_entitlements_path" 2>/dev/null + codesign -d --entitlements - --xml "$cli_app" > "$cli_entitlements_path" 2>/dev/null cli_app_group="$(/usr/libexec/PlistBuddy -c 'Print :com.apple.security.application-groups:0' "$cli_entitlements_path")" if [[ "$cli_app_group" != '9GEBAJV9R4.quorra' ]]; then echo "::error::The Quorra CLI is missing the shared App Group entitlement."