mirror of
				https://github.com/zulip/zulip-desktop.git
				synced 2025-11-04 05:53:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			650 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			650 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
'use strict';
 | 
						|
const path = require('path');
 | 
						|
const dotenv = require('dotenv');
 | 
						|
 | 
						|
dotenv.config({path: path.join(__dirname, '/../.env')});
 | 
						|
 | 
						|
const {notarize} = require('electron-notarize');
 | 
						|
 | 
						|
exports.default = async function (context) {
 | 
						|
	const {electronPlatformName, appOutDir} = context;
 | 
						|
	if (electronPlatformName !== 'darwin') {
 | 
						|
		return;
 | 
						|
	}
 | 
						|
 | 
						|
	const appName = context.packager.appInfo.productFilename;
 | 
						|
 | 
						|
	return notarize({
 | 
						|
		appBundleId: 'org.zulip.zulip-electron',
 | 
						|
		appPath: `${appOutDir}/${appName}.app`,
 | 
						|
		appleId: process.env.APPLE_ID,
 | 
						|
		appleIdPassword: process.env.APPLE_ID_PASS,
 | 
						|
		ascProvider: process.env.ASC_PROVIDER // Team short name
 | 
						|
	});
 | 
						|
};
 |