File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed
Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ const { notarize } = require("@electron/notarize");
22const { build } = require ( "../../package.json" ) ;
33
44exports . default = async function notarizeMacos ( context ) {
5+
6+ console . log ( "aftersign triggered" )
7+
58 const { electronPlatformName, appOutDir } = context ;
69 if ( electronPlatformName !== "darwin" ) {
710 return ;
@@ -13,9 +16,9 @@ exports.default = async function notarizeMacos(context) {
1316 // return;
1417 // }
1518
16- if ( ! ( "APPLE_ID" in process . env && "APPLE_ID_PASS " in process . env ) ) {
19+ if ( ! ( "APPLE_ID" in process . env && "APPLE_APP_SPECIFIC_PASSWORD " in process . env ) ) {
1720 console . warn (
18- "Skipping notarizing step. APPLE_ID and APPLE_ID_PASS env variables must be set"
21+ "Skipping notarizing step. APPLE_ID and APPLE_APP_SPECIFIC_PASSWORD env variables must be set"
1922 ) ;
2023 return ;
2124 }
@@ -26,6 +29,6 @@ exports.default = async function notarizeMacos(context) {
2629 appBundleId : build . appId ,
2730 appPath : `${ appOutDir } /${ appName } .app` ,
2831 appleId : process . env . APPLE_ID ,
29- appleIdPassword : process . env . APPLE_ID_PASS ,
32+ appleIdPassword : process . env . APPLE_APP_SPECIFIC_PASSWORD ,
3033 } ) ;
3134} ;
Original file line number Diff line number Diff line change 11{
22 "name" : " requestly" ,
33 "productName" : " Requestly" ,
4- "version" : " 1.7.1 " ,
4+ "version" : " 1.7.2 " ,
55 "private" : true ,
66 "description" : " Intercept & Modify HTTP Requests" ,
77 "scripts" : {
4646 " package.json" ,
4747 " static"
4848 ],
49- "afterSign" : " .erb/scripts/notarize.js" ,
5049 "protocols" : {
5150 "name" : " requestly-internal-protocol" ,
5251 "schemes" : [
Original file line number Diff line number Diff line change 11{
22 "name" : " requestly" ,
33 "productName" : " Requestly" ,
4- "version" : " 1.7.1 " ,
4+ "version" : " 1.7.2 " ,
55 "private" : true ,
66 "description" : " Intercept & Modify HTTP Requests" ,
77 "main" : " ./dist/main/main.js" ,
You can’t perform that action at this time.
0 commit comments