From 1cff5e467fe78d9e49960e4b3dff3464c8fc72f5 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Thu, 17 Aug 2023 14:18:39 +1000 Subject: [PATCH] chore: fix for latest notarize tools from apple they expect a teamId field now --- build/notarize.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build/notarize.js b/build/notarize.js index ca8551f44..6e05292dc 100644 --- a/build/notarize.js +++ b/build/notarize.js @@ -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); };