We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e7ad32 commit a6499c1Copy full SHA for a6499c1
.github/installer_composite/action.yml
@@ -47,7 +47,7 @@ runs:
47
48
var macos_suffix = '';
49
if ("${{inputs.operating_system}}".includes("macos")){
50
- macos_suffix = ("${{inputs.operating_system}}".includes("13")) ? "-intel" : "-m1"
+ macos_suffix = ("${{inputs.operating_system}}".includes("intel")) ? "-intel" : "-m1"
51
}
52
53
// Get OS Name
@@ -130,7 +130,7 @@ runs:
130
os_title = "Linux"
131
} else {
132
asset_type = "pkg";
133
- os_title = node_name.includes("14") ? "Mac-M1" : "Mac-Intel";
+ os_title = node_name.includes("intel") ? "Mac-Intel" : "Mac-M1";
134
135
136
const assetName = `Komet-${{steps.get_current_version.outputs.POM_VERSION}}-Installer-${os_title}-Unsigned.${asset_type}`;
0 commit comments