Skip to content

Commit a6499c1

Browse files
committed
fix: update composite action for new macos runners
1 parent 7e7ad32 commit a6499c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/installer_composite/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ runs:
4747
4848
var macos_suffix = '';
4949
if ("${{inputs.operating_system}}".includes("macos")){
50-
macos_suffix = ("${{inputs.operating_system}}".includes("13")) ? "-intel" : "-m1"
50+
macos_suffix = ("${{inputs.operating_system}}".includes("intel")) ? "-intel" : "-m1"
5151
}
5252
5353
// Get OS Name
@@ -130,7 +130,7 @@ runs:
130130
os_title = "Linux"
131131
} else {
132132
asset_type = "pkg";
133-
os_title = node_name.includes("14") ? "Mac-M1" : "Mac-Intel";
133+
os_title = node_name.includes("intel") ? "Mac-Intel" : "Mac-M1";
134134
}
135135
136136
const assetName = `Komet-${{steps.get_current_version.outputs.POM_VERSION}}-Installer-${os_title}-Unsigned.${asset_type}`;

0 commit comments

Comments
 (0)