signmacosdesktop
bunsenstraat 9 months ago
parent e39bb33d77
commit 9fd3b01c09
  1. 8
      apps/remixdesktop/notarize.js

@ -14,6 +14,14 @@ exports.default = async function notarizing(context) {
console.log(appName);
console.log({
appBundleId: 'org.ethereum.remix-ide', // Your app's bundle ID
appPath: `${appOutDir}/${appName}.app`, // Path to your .app
appleId: process.env.APPLE_ID, // Your Apple ID
appleIdPassword: process.env.APPLE_ID_PASSWORD, // App-specific password
teamId: process.env.APPLE_TEAM_ID, // Your Apple Developer team ID (optional)
})
const r = await notarize({
appBundleId: 'org.ethereum.remix-ide', // Your app's bundle ID
appPath: `${appOutDir}/${appName}.app`, // Path to your .app

Loading…
Cancel
Save