diff --git a/.changeset/metal-adults-impress.md b/.changeset/metal-adults-impress.md new file mode 100644 index 0000000000..2b490cb64b --- /dev/null +++ b/.changeset/metal-adults-impress.md @@ -0,0 +1,5 @@ +--- +"app-builder-lib": patch +--- + +fix notary with pure api key auth diff --git a/packages/app-builder-lib/src/macPackager.ts b/packages/app-builder-lib/src/macPackager.ts index 99e1a273fc..c277905945 100644 --- a/packages/app-builder-lib/src/macPackager.ts +++ b/packages/app-builder-lib/src/macPackager.ts @@ -560,6 +560,13 @@ export default class MacPackager extends PlatformPackager { ascProvider: ascProvider || undefined, } } + if (notaryToolLogin) { + return { + tool: 'notarytool', + appPath, + ...notaryToolLogin, + } + } return undefined } }