mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
fix(ci): make appBundleId configurable. (#5964)
Signed-off-by: Jan-Otto Kröpke <github@jkroepke.de>
This commit is contained in:
parent
d9785ad4dc
commit
a6dae3632f
@ -18,7 +18,7 @@ exports.default = async function notarizing(context) {
|
|||||||
const appName = context.packager.appInfo.productFilename;
|
const appName = context.packager.appInfo.productFilename;
|
||||||
|
|
||||||
return await notarize({
|
return await notarize({
|
||||||
appBundleId: "io.kontena.lens-app",
|
appBundleId: process.env.APPBUNDLEID || "io.kontena.lens-app",
|
||||||
appPath: `${appOutDir}/${appName}.app`,
|
appPath: `${appOutDir}/${appName}.app`,
|
||||||
appleId: process.env.APPLEID,
|
appleId: process.env.APPLEID,
|
||||||
appleIdPassword: process.env.APPLEIDPASS,
|
appleIdPassword: process.env.APPLEIDPASS,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user