Skip to content

Commit 65817e0

Browse files
authoredNov 26, 2023
fix(mac): use notarytool with only api key auth (#7896)
1 parent 6b84010 commit 65817e0

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed
 

‎.changeset/metal-adults-impress.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"app-builder-lib": patch
3+
---
4+
5+
fix notary with pure api key auth

‎packages/app-builder-lib/src/macPackager.ts

+7
Original file line numberDiff line numberDiff line change
@@ -560,6 +560,13 @@ export default class MacPackager extends PlatformPackager<MacConfiguration> {
560560
ascProvider: ascProvider || undefined,
561561
}
562562
}
563+
if (notaryToolLogin) {
564+
return {
565+
tool: 'notarytool',
566+
appPath,
567+
...notaryToolLogin,
568+
}
569+
}
563570
return undefined
564571
}
565572
}

0 commit comments

Comments
 (0)
Please sign in to comment.