chore: fix for latest notarize tools from apple

they expect a teamId field now
pull/2858/head
Audric Ackermann 9 months ago
parent d8d437bf43
commit 1cff5e467f

@ -34,6 +34,9 @@ exports.default = async function notarizing(context) {
appleId: SIGNING_APPLE_ID,
appleIdPassword: SIGNING_APP_PASSWORD,
};
if (!isEmpty(SIGNING_TEAM_ID)) options.ascProvider = SIGNING_TEAM_ID;
if (!isEmpty(SIGNING_TEAM_ID)) {
options.ascProvider = SIGNING_TEAM_ID;
options.teamId = SIGNING_TEAM_ID;
}
return notarize(options);
};

Loading…
Cancel
Save