From 16d2dbf7509b2e8e7e4bdd8ecc3c319d59059a13 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 9 Jan 2023 14:51:17 +0100 Subject: [PATCH] Check against macOS Contribute to CURA-9157 and CURA-6867 --- .github/workflows/cura-installer.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cura-installer.yml b/.github/workflows/cura-installer.yml index fd1922b898..30ec9bb199 100644 --- a/.github/workflows/cura-installer.yml +++ b/.github/workflows/cura-installer.yml @@ -238,7 +238,7 @@ jobs: installer_filename = f"UltiMaker-Cura-{os.getenv('CURA_VERSION_FULL')}{enterprise}-${{ inputs.os_name }}" if "${{ runner.os }}" == "Windows": installer_ext = "msi" if "${{ inputs.msi_installer }}" == "true" else "exe" - elif "${{ runner.os }}" == "Macos": + elif "${{ runner.os }}" == "macOS": installer_ext = "dmg" else: installer_ext = "AppImage"