docs: add comment explaining how to reactivate code signing

This commit is contained in:
Tom French 2022-05-30 13:03:13 +01:00 committed by James Long
parent d6eb0d9d2e
commit e906b9652c

View file

@ -2,6 +2,12 @@ const fs = require('fs');
const path = require('path');
var electron_notarize = require('electron-notarize');
// This is expected to be run by `electron-builder` after it signs the build.
// It's disabled for now as we currently don't sign builds after Actual being open sourced.
// To start signing builds again:
// - add the property `"afterSign": "./afterSignHook.js"` to the `build` object in package.json.
// - add the property `"certificateSubjectName": "Shift Reset LLC"` (or similar) to the `win` object in package.json.
module.exports = async function(params) {
// Only notarize the app on Mac OS only.
if (process.platform !== 'darwin' || process.env['SKIP_NOTARIZATION']) {