From 6867f26f1922b9115419187799092e311e960381 Mon Sep 17 00:00:00 2001 From: Conrad Kramer Date: Sun, 7 Jun 2026 15:16:01 -0700 Subject: [PATCH] Accept Developer ID G2 certificates --- Scripts/apple/sync-provisioning-profiles.mjs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Scripts/apple/sync-provisioning-profiles.mjs b/Scripts/apple/sync-provisioning-profiles.mjs index a160094..1a592d6 100755 --- a/Scripts/apple/sync-provisioning-profiles.mjs +++ b/Scripts/apple/sync-provisioning-profiles.mjs @@ -307,7 +307,11 @@ async function main() { } if (platform === "macos" || platform === "all") { - const cert = await findCertificate(jwt, ["DEVELOPER_ID_APPLICATION"], macosCertificateId); + const cert = await findCertificate( + jwt, + ["DEVELOPER_ID_APPLICATION", "DEVELOPER_ID_APPLICATION_G2"], + macosCertificateId, + ); const targets = [appId, networkId].map((identifier) => ({ identifier, name: `${identifier}.developer-id`,