signmacosdesktop
filip mertens 9 months ago
parent 7a66fa0be4
commit 8e87e21e1f
  1. 4
      apps/remixdesktop/notarize.js

@ -12,8 +12,10 @@ exports.default = async function notarizing(context) {
const appName = context.packager.appInfo.productFilename; const appName = context.packager.appInfo.productFilename;
console.log(appName);
await notarize({ await notarize({
appBundleId: 'com.example.yourapp', // Your app's bundle ID appBundleId: 'org.ethereum.remix-ide', // Your app's bundle ID
appPath: `${appOutDir}/${appName}.app`, // Path to your .app appPath: `${appOutDir}/${appName}.app`, // Path to your .app
appleId: process.env.APPLE_ID, // Your Apple ID appleId: process.env.APPLE_ID, // Your Apple ID
appleIdPassword: process.env.APPLE_ID_PASSWORD, // App-specific password appleIdPassword: process.env.APPLE_ID_PASSWORD, // App-specific password

Loading…
Cancel
Save