mirror of
https://github.com/Kuingsmile/PicList.git
synced 2026-05-21 16:20:46 +08:00
📦 Chore(custom): update scripts and migrate to esm
This commit is contained in:
35
scripts/notarize.cjs
Normal file
35
scripts/notarize.cjs
Normal file
@@ -0,0 +1,35 @@
|
||||
'use strict'
|
||||
|
||||
require('dotenv').config()
|
||||
|
||||
const { notarize } = require('@electron/notarize')
|
||||
const { ELECTRON_SKIP_NOTARIZATION, XCODE_APP_LOADER_EMAIL, XCODE_APP_LOADER_PASSWORD, XCODE_TEAM_ID } = process.env
|
||||
|
||||
async function main (context) {
|
||||
const { electronPlatformName, appOutDir } = context
|
||||
|
||||
if (
|
||||
electronPlatformName !== 'darwin' ||
|
||||
ELECTRON_SKIP_NOTARIZATION === 'true' ||
|
||||
!XCODE_APP_LOADER_EMAIL ||
|
||||
!XCODE_APP_LOADER_PASSWORD ||
|
||||
!XCODE_TEAM_ID
|
||||
) {
|
||||
console.log('Skipping Apple notarization.')
|
||||
return
|
||||
}
|
||||
|
||||
console.log('Starting Apple notarization.')
|
||||
const appName = context.packager.appInfo.productFilename
|
||||
await notarize({
|
||||
appBundleId: 'com.kuingsmile.piclist',
|
||||
appPath: `${appOutDir}/${appName}.app`,
|
||||
appleId: XCODE_APP_LOADER_EMAIL,
|
||||
appleIdPassword: XCODE_APP_LOADER_PASSWORD,
|
||||
tool: 'notarytool',
|
||||
teamId: XCODE_TEAM_ID
|
||||
})
|
||||
console.log('Finished Apple notarization.')
|
||||
}
|
||||
|
||||
exports.default = main
|
||||
Reference in New Issue
Block a user