File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ const config = {
3535 ] ,
3636 icon : 'resources/icons/mac/icon.icns' ,
3737 hardenedRuntime : true ,
38- identity : 'Anoop MD (W7LPPWA48L )' ,
38+ identity : 'Bruno Software, Inc. (P3WTZH48ZB )' ,
3939 entitlements : 'resources/entitlements.mac.plist' ,
4040 entitlementsInherit : 'resources/entitlements.mac.plist' ,
4141 notarize : false ,
Original file line number Diff line number Diff line change @@ -17,20 +17,22 @@ const notarize = async function (params) {
1717 }
1818
1919 console . log ( `Notarizing ${ appId } found at ${ appPath } using Apple ID ${ process . env . APPLE_ID } ` ) ;
20-
20+ const teamId = 'P3WTZH48ZB' ;
2121 try {
2222 await electron_notarize . notarize ( {
23+ tool : 'notarytool' ,
2324 appBundleId : appId ,
2425 appPath : appPath ,
2526 appleId : process . env . APPLE_ID ,
2627 appleIdPassword : process . env . APPLE_ID_PASSWORD ,
27- ascProvider : 'W7LPPWA48L'
28+ ascProvider : teamId ,
29+ teamId : teamId
2830 } ) ;
2931 } catch ( error ) {
3032 console . error ( error ) ;
3133 }
3234
33- console . log ( `Done notarizing ${ appId } ` ) ;
35+ console . log ( `Done notarizing ${ appPath } ` ) ;
3436} ;
3537
3638module . exports = notarize ;
You can’t perform that action at this time.
0 commit comments