Files
Desktop/scripts/notarize.mjs
T
2026-04-02 13:20:15 -07:00

68 lines
1.6 KiB
JavaScript

// Copyright 2019 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
// @ts-check
import path from 'node:path';
import { notarize } from '@electron/notarize';
import packageJson from '../package.json' with { type: 'json' };
/** @import { AfterPackContext } from 'electron-builder' */
/**
* @param {AfterPackContext} context
* @returns {Promise<void>}
*/
export async function afterSign({ appOutDir, packager, electronPlatformName }) {
if (electronPlatformName !== 'darwin') {
console.log('notarize: Skipping, not on macOS');
return;
}
const { productFilename } = packager.appInfo;
const appPath = path.join(appOutDir, `${productFilename}.app`);
const appBundleId = packageJson.build.appId;
if (!appBundleId) {
throw new Error(
'appBundleId must be provided in package.json: build.appId'
);
}
const appleId = process.env.APPLE_USERNAME;
if (!appleId) {
console.warn(
'appleId must be provided in environment variable APPLE_USERNAME'
);
return;
}
const appleIdPassword = process.env.APPLE_PASSWORD;
if (!appleIdPassword) {
console.warn(
'appleIdPassword must be provided in environment variable APPLE_PASSWORD'
);
return;
}
const teamId = process.env.APPLE_TEAM_ID;
if (!teamId) {
console.warn(
'teamId must be provided in environment variable APPLE_TEAM_ID'
);
return;
}
console.log('Notarizing with...');
console.log(` primaryBundleId: ${appBundleId}`);
console.log(` username: ${appleId}`);
console.log(` file: ${appPath}`);
await notarize({
appBundleId,
appPath,
appleId,
appleIdPassword,
teamId,
});
}