e6a3e5c3ea
* move core into repo, apps into apps folder, update tests * Update scripts for build:core * improve scripts * remove noise from www * Update .gitignore * Fix focus bug * add ci test script * Update main.yml
20 lines
520 B
JavaScript
20 lines
520 B
JavaScript
/* eslint-disable */
|
|
|
|
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: 'com.tldraw.app',
|
|
appPath: `${appOutDir}/${appName}.app`,
|
|
appleId: process.env.APPLEID,
|
|
appleIdPassword: process.env.APPLEIDPASS,
|
|
})
|
|
}
|