1234567891011121314151617181920212223242526272829303132333435 |
- name: All installers
- run-name: ${{ inputs.cura_conan_version }} by @${{ github.actor }}
- on:
- workflow_dispatch:
- inputs:
- cura_conan_version:
- description: 'Cura Conan Version'
- default: 'cura/[*]@ultimaker/testing'
- type: string
- conan_args:
- description: 'Conan args, e.g. --requires'
- default: ''
- type: string
- enterprise:
- description: 'Build Cura as an Enterprise edition'
- default: false
- type: boolean
- staging:
- description: 'Use staging API'
- default: false
- type: boolean
- jobs:
- installers:
- # FIXME: Use main once merged
- name: Create installers
- uses: ultimaker/cura-workflows/.github/workflows/cura-installers.yml@CURA-11622_conan_v2
- with:
- cura_conan_version: ${{ inputs.cura_conan_version }}
- conan_args: ${{ inputs.conan_args }}
- enterprise: ${{ inputs.enterprise == 'true' }}
- staging: ${{ inputs.staging == 'true' }}
- secrets: inherit
|