We hit the max 10 inputs for the workflow. Remove the pkg input and use the msi one temporarily instead.

CURA-6867
This commit is contained in:
Joey de l'Arago 2023-01-12 14:15:53 +01:00
parent 05e1f57324
commit e25730ad77
2 changed files with 3 additions and 14 deletions

View file

@ -40,7 +40,7 @@ on:
required: true
type: boolean
build_windows_msi:
description: 'Build for Windows msi'
description: 'Build for msi+pkg'
default: true
required: true
type: boolean
@ -54,11 +54,6 @@ on:
default: true
required: true
type: boolean
build_macos_installer:
description: 'Build pkg for MacOS'
default: true
required: true
type: boolean
# Run the nightly at 3:25 UTC on working days
schedule:
@ -152,6 +147,5 @@ jobs:
enterprise: ${{ inputs.enterprise }}
staging: ${{ inputs.staging }}
installer: ${{ inputs.installer }}
msi_installer: false
pkg_installer: true
msi_installer: true
secrets: inherit

View file

@ -49,11 +49,6 @@ on:
default: false
required: true
type: boolean
pkg_installer:
description: 'Create the pkg'
default: false
required: true
type: boolean
env:
CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }}
@ -256,7 +251,7 @@ jobs:
if "${{ runner.os }}" == "Windows":
installer_ext = "msi" if "${{ inputs.msi_installer }}" == "true" else "exe"
elif "${{ runner.os }}" == "macOS":
installer_ext = "pkg" if "${{ inputs.pkg_installer }}" == "true" else "dmg"
installer_ext = "pkg" if "${{ inputs.mis_installer }}" == "true" else "dmg"
else:
installer_ext = "AppImage"
output_env = os.environ["GITHUB_OUTPUT"]