From a6dae3632f6cb105cf04acc858b7e03ccae403ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan-Otto=20Kr=C3=B6pke?= Date: Mon, 8 Aug 2022 12:06:54 +0200 Subject: [PATCH] fix(ci): make appBundleId configurable. (#5964) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jan-Otto Kröpke --- build/notarize.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/notarize.js b/build/notarize.js index 3fb8cdee42..ded81f6dd1 100644 --- a/build/notarize.js +++ b/build/notarize.js @@ -18,7 +18,7 @@ exports.default = async function notarizing(context) { const appName = context.packager.appInfo.productFilename; return await notarize({ - appBundleId: "io.kontena.lens-app", + appBundleId: process.env.APPBUNDLEID || "io.kontena.lens-app", appPath: `${appOutDir}/${appName}.app`, appleId: process.env.APPLEID, appleIdPassword: process.env.APPLEIDPASS,