Don't notarize releases in parallel
This commit is contained in:
parent
e46a1979c4
commit
4a011b71d9
1 changed files with 9 additions and 10 deletions
|
@ -54,16 +54,15 @@ async function go() {
|
||||||
console.log(` primaryBundleId: ${appBundleId}`);
|
console.log(` primaryBundleId: ${appBundleId}`);
|
||||||
console.log(` username: ${appleId}`);
|
console.log(` username: ${appleId}`);
|
||||||
|
|
||||||
await Promise.all(
|
for (const appPath of appPaths) {
|
||||||
appPaths.map(async appPath => {
|
// eslint-disable-next-line no-await-in-loop
|
||||||
return notarize({
|
await notarize({
|
||||||
appBundleId,
|
appBundleId,
|
||||||
appPath,
|
appPath,
|
||||||
appleId,
|
appleId,
|
||||||
appleIdPassword,
|
appleIdPassword,
|
||||||
});
|
});
|
||||||
})
|
}
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const IS_DMG = /\.dmg$/;
|
const IS_DMG = /\.dmg$/;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue