mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-07 14:04:03 -06:00
53 lines
No EOL
1.5 KiB
YAML
53 lines
No EOL
1.5 KiB
YAML
name: Windows Installer
|
|
run-name: ${{ inputs.cura_conan_version }} by @${{ github.actor }}
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
cura_conan_version:
|
|
description: 'Cura Conan Version'
|
|
default: 'cura/latest@ultimaker/testing'
|
|
required: true
|
|
type: string
|
|
conan_args:
|
|
description: 'Conan args: eq.: --require-override'
|
|
default: ''
|
|
required: false
|
|
type: string
|
|
enterprise:
|
|
description: 'Build Cura as an Enterprise edition'
|
|
default: false
|
|
required: true
|
|
type: boolean
|
|
staging:
|
|
description: 'Use staging API'
|
|
default: false
|
|
required: true
|
|
type: boolean
|
|
architecture:
|
|
description: 'Architecture'
|
|
required: true
|
|
default: 'X64'
|
|
type: choice
|
|
options:
|
|
- X64
|
|
operating_system:
|
|
description: 'OS'
|
|
required: true
|
|
default: 'self-hosted-Windows-X64'
|
|
type: choice
|
|
options:
|
|
- self-hosted-Windows-X64
|
|
- windows-2022
|
|
|
|
jobs:
|
|
windows-installer:
|
|
uses: ultimaker/cura-workflows/.github/workflows/cura-installer-windows.yml@main
|
|
with:
|
|
cura_conan_version: ${{ inputs.cura_conan_version }}
|
|
conan_args: ${{ inputs.conan_args }}
|
|
enterprise: ${{ inputs.enterprise }}
|
|
staging: ${{ inputs.staging }}
|
|
architecture: ${{ inputs.architecture }}
|
|
operating_system: ${{ inputs.operating_system }}
|
|
secrets: inherit |