Run notarization in afterPack script
This commit is contained in:
parent
eebd252b81
commit
5e113f8975
4 changed files with 67 additions and 91 deletions
|
@ -6,10 +6,14 @@ import { afterPack as fuseElectron } from './fuse-electron';
|
|||
import { afterPack as mergeASARs } from './merge-macos-asars';
|
||||
import { afterPack as copyPacks } from './copy-language-packs';
|
||||
import { afterPack as pruneMacOSRelease } from './prune-macos-release';
|
||||
import { afterPack as notarize } from './notarize';
|
||||
|
||||
export async function afterPack(context: AfterPackContext): Promise<void> {
|
||||
await pruneMacOSRelease(context);
|
||||
await mergeASARs(context);
|
||||
await fuseElectron(context);
|
||||
await copyPacks(context);
|
||||
|
||||
// This must be the last step
|
||||
await notarize(context);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue