Skip to content

Commit 3b26af2

Browse files
override notarization when false
1 parent 3a35dcd commit 3b26af2

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

dist/index.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58625,11 +58625,10 @@ async function GetProjectDetails(credential, xcodeVersion) {
5862558625
if (projectRef.platform === 'macOS') {
5862658626
const notarizeInput = core.getInput('notarize') || 'true';
5862758627
core.debug(`Notarize input: ${notarizeInput}`);
58628-
projectRef.notarize =
58629-
notarizeInput === 'true' ||
58630-
projectRef.isSteamBuild ||
58628+
projectRef.notarize = notarizeInput === 'true' &&
58629+
(projectRef.isSteamBuild ||
5863158630
projectRef.archiveType === 'pkg' ||
58632-
projectRef.archiveType === 'dmg';
58631+
projectRef.archiveType === 'dmg');
5863358632
let output = '';
5863458633
await (0, exec_1.exec)('security', [
5863558634
'find-identity',

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)