mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-05-19 16:31:36 +00:00
Rename nodeVersion variable
This commit is contained in:
parent
b68f8176c3
commit
42215ee5c1
1 changed files with 7 additions and 7 deletions
|
|
@ -8,17 +8,17 @@ exports.default = async function notarizing(context) {
|
|||
const appOutDir = context.appOutDir;
|
||||
const appName = context.packager.appInfo.productName;
|
||||
console.log("appOutDir", appOutDir);
|
||||
console.log("process.env.APPLEID", process.env.APPLEID);
|
||||
console.log("process.env.APPLEIDPASS", process.env.APPLEIDPASS);
|
||||
console.log("process.env.APPLETEAMID", process.env.APPLETEAMID);
|
||||
console.log("process.env.APPLEID", process.env.APPLE_ID);
|
||||
console.log("process.env.APPLEIDPASS", process.env.APPLE_APP_SPECIFIC_PASSWORD);
|
||||
console.log("process.env.APPLETEAMID", process.env.APPLE_TEAM_ID);
|
||||
return notarize({
|
||||
tool: "notarytool",
|
||||
teamId: process.env.APPLETEAMID,
|
||||
teamId: process.env.APPLE_TEAM_ID,
|
||||
appBundleId: "com.eigent.app",
|
||||
appPath: `${appOutDir}/${appName}.app`,
|
||||
appleId: process.env.APPLEID,
|
||||
appleIdPassword: process.env.APPLEIDPASS,
|
||||
ascProvider: process.env.APPLETEAMID,
|
||||
appleId: process.env.APPLE_ID,
|
||||
appleIdPassword: process.env.APPLE_APP_SPECIFIC_PASSWORD,
|
||||
ascProvider: process.env.APPLE_TEAM_ID,
|
||||
})
|
||||
.then((res) => {
|
||||
console.log("success!");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue