adjust to access the workflow_dispatch input

inputs.start_builds is only available at the top-level workflow, not inside a job's if condition.
This commit is contained in:
HellAholic 2025-06-26 09:48:46 +02:00
parent 9cc61d7db0
commit 300d776f1a

View file

@ -38,7 +38,7 @@ jobs:
installers:
name: Create installers
needs: find-packages
if: ${{ inputs.start_builds == true && needs.find-packages.outputs.discovered_packages != '' }}
if: ${{ github.event.inputs.start_builds == 'true' && needs.find-packages.outputs.discovered_packages != '' }}
uses: ultimaker/cura-workflows/.github/workflows/cura-installers.yml@main
with:
cura_conan_version: ${{ needs.find-packages.outputs.cura_package }}