mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-08 06:23:59 -06:00
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:
parent
05e1f57324
commit
e25730ad77
2 changed files with 3 additions and 14 deletions
10
.github/workflows/cura-all-installers.yml
vendored
10
.github/workflows/cura-all-installers.yml
vendored
|
@ -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
|
||||
|
|
7
.github/workflows/cura-installer.yml
vendored
7
.github/workflows/cura-installer.yml
vendored
|
@ -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"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue