mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-14 23:25:53 +08: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
10
.github/workflows/cura-all-installers.yml
vendored
10
.github/workflows/cura-all-installers.yml
vendored
@ -40,7 +40,7 @@ on:
|
|||||||
required: true
|
required: true
|
||||||
type: boolean
|
type: boolean
|
||||||
build_windows_msi:
|
build_windows_msi:
|
||||||
description: 'Build for Windows msi'
|
description: 'Build for msi+pkg'
|
||||||
default: true
|
default: true
|
||||||
required: true
|
required: true
|
||||||
type: boolean
|
type: boolean
|
||||||
@ -54,11 +54,6 @@ on:
|
|||||||
default: true
|
default: true
|
||||||
required: true
|
required: true
|
||||||
type: boolean
|
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
|
# Run the nightly at 3:25 UTC on working days
|
||||||
schedule:
|
schedule:
|
||||||
@ -152,6 +147,5 @@ jobs:
|
|||||||
enterprise: ${{ inputs.enterprise }}
|
enterprise: ${{ inputs.enterprise }}
|
||||||
staging: ${{ inputs.staging }}
|
staging: ${{ inputs.staging }}
|
||||||
installer: ${{ inputs.installer }}
|
installer: ${{ inputs.installer }}
|
||||||
msi_installer: false
|
msi_installer: true
|
||||||
pkg_installer: true
|
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
7
.github/workflows/cura-installer.yml
vendored
7
.github/workflows/cura-installer.yml
vendored
@ -49,11 +49,6 @@ on:
|
|||||||
default: false
|
default: false
|
||||||
required: true
|
required: true
|
||||||
type: boolean
|
type: boolean
|
||||||
pkg_installer:
|
|
||||||
description: 'Create the pkg'
|
|
||||||
default: false
|
|
||||||
required: true
|
|
||||||
type: boolean
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }}
|
CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }}
|
||||||
@ -256,7 +251,7 @@ jobs:
|
|||||||
if "${{ runner.os }}" == "Windows":
|
if "${{ runner.os }}" == "Windows":
|
||||||
installer_ext = "msi" if "${{ inputs.msi_installer }}" == "true" else "exe"
|
installer_ext = "msi" if "${{ inputs.msi_installer }}" == "true" else "exe"
|
||||||
elif "${{ runner.os }}" == "macOS":
|
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:
|
else:
|
||||||
installer_ext = "AppImage"
|
installer_ext = "AppImage"
|
||||||
output_env = os.environ["GITHUB_OUTPUT"]
|
output_env = os.environ["GITHUB_OUTPUT"]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user