Staple .zip/.dmg build artifacts on macOS
This commit is contained in:
parent
7eaba737c6
commit
b8c1faf086
4 changed files with 76 additions and 1 deletions
|
@ -411,6 +411,7 @@
|
|||
"beforeBuild": "scripts/install-cross-deps.js",
|
||||
"afterPack": "ts/scripts/after-pack.js",
|
||||
"afterSign": "ts/scripts/after-sign.js",
|
||||
"afterAllArtifactBuild": "ts/scripts/after-all-artifact-build.js",
|
||||
"asarUnpack": [
|
||||
"node_modules/better-sqlite3/build/Release/better_sqlite3.node"
|
||||
],
|
||||
|
|
12
ts/scripts/after-all-artifact-build.ts
Normal file
12
ts/scripts/after-all-artifact-build.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
// Copyright 2022 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import type { BuildResult } from 'electron-builder';
|
||||
import { afterAllArtifactBuild as stapleNotarization } from './staple-notarization';
|
||||
|
||||
export async function afterAllArtifactBuild(
|
||||
result: BuildResult
|
||||
): Promise<Array<string>> {
|
||||
await stapleNotarization(result);
|
||||
return [];
|
||||
}
|
|
@ -52,7 +52,6 @@ export async function afterSign({
|
|||
console.log(` username: ${appleId}`);
|
||||
console.log(` file: ${appPath}`);
|
||||
|
||||
// eslint-disable-next-line no-await-in-loop
|
||||
await notarize({
|
||||
appBundleId,
|
||||
appPath,
|
||||
|
|
63
ts/scripts/staple-notarization.ts
Normal file
63
ts/scripts/staple-notarization.ts
Normal file
|
@ -0,0 +1,63 @@
|
|||
// Copyright 2022 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import type { BuildResult } from 'electron-builder';
|
||||
|
||||
import { stapleApp } from 'electron-notarize';
|
||||
|
||||
import * as packageJson from '../../package.json';
|
||||
|
||||
/* eslint-disable no-console */
|
||||
|
||||
export async function afterAllArtifactBuild({
|
||||
platformToTargets,
|
||||
artifactPaths,
|
||||
}: BuildResult): Promise<void> {
|
||||
const platforms = Array.from(platformToTargets.keys()).map(
|
||||
platform => platform.name
|
||||
);
|
||||
if (platforms.length !== 1) {
|
||||
console.log(`notarize: Skipping, too many platforms ${platforms}`);
|
||||
return;
|
||||
}
|
||||
|
||||
if (platforms[0] !== 'mac') {
|
||||
console.log(`notarize: Skipping, platform is ${platforms[0]}`);
|
||||
return;
|
||||
}
|
||||
|
||||
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 artifactsToStaple = artifactPaths.filter(artifactPath =>
|
||||
/\.(zip|dmg)$/.test(artifactPath)
|
||||
);
|
||||
|
||||
for (const artifactPath of artifactsToStaple) {
|
||||
console.log(`Stapling notariation for: ${artifactPath}`);
|
||||
// eslint-disable-next-line no-await-in-loop
|
||||
await stapleApp({
|
||||
appPath: artifactPath,
|
||||
});
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue