mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-07-22 20:26:50 +00:00
Update electron builds
This commit is contained in:
21
electron/scripts/notarize.js
Normal file
21
electron/scripts/notarize.js
Normal file
@@ -0,0 +1,21 @@
|
||||
require('dotenv').config()
|
||||
const { notarize } = require('@electron/notarize')
|
||||
|
||||
exports.default = async function notarizing(context) {
|
||||
const { electronPlatformName, appOutDir } = context
|
||||
|
||||
if (electronPlatformName !== 'darwin') {
|
||||
return
|
||||
}
|
||||
|
||||
const appName = context.packager.appInfo.productFilename
|
||||
|
||||
return await notarize({
|
||||
appBundleId: 'org.qortal.Qortal-Hub',
|
||||
appPath: `${appOutDir}/${appName}.app`,
|
||||
tool: "notarytool",
|
||||
teamId: process.env.APPLETEAMID,
|
||||
appleId: process.env.APPLEID,
|
||||
appleIdPassword: process.env.APPLEIDPASS
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user