mirror of
				https://github.com/Qortal/qortal-ui.git
				synced 2025-11-04 06:37:47 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			512 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			512 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
require('dotenv').config();
 | 
						|
const { notarize } = require('electron-notarize');
 | 
						|
 | 
						|
exports.default = async function notarizing(context) {
 | 
						|
  const { electronPlatformName, appOutDir } = context;  
 | 
						|
  if (electronPlatformName !== 'darwin') {
 | 
						|
    return;
 | 
						|
  }
 | 
						|
 | 
						|
  const appName = context.packager.appInfo.productFilename;
 | 
						|
 | 
						|
  return await notarize({
 | 
						|
    appBundleId: 'org.qortal.QortalUI',
 | 
						|
    appPath: `${appOutDir}/${appName}.app`,
 | 
						|
    appleId: process.env.APPLEID,
 | 
						|
    appleIdPassword: process.env.APPLEIDPASS,
 | 
						|
  });
 | 
						|
};
 |