From 4e31b4328cf7cc755973bf3bd7034259c7661b6d Mon Sep 17 00:00:00 2001 From: "j.spijker@ultimaker.com" Date: Wed, 3 Aug 2022 15:48:51 +0200 Subject: [PATCH] Treat it as bool Contributes to CURA-8831 --- .github/workflows/conan-recipe-export.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/conan-recipe-export.yml b/.github/workflows/conan-recipe-export.yml index 75e4682b2b..cbba62d319 100644 --- a/.github/workflows/conan-recipe-export.yml +++ b/.github/workflows/conan-recipe-export.yml @@ -80,11 +80,11 @@ jobs: run: conan config install https://github.com/Ultimaker/conan-config.git - name: Export the Package (binaries) - if: ${{ inputs.conan_export_binaries == 'true' }} + if: ${{ inputs.conan_export_binaries }} run: conan export-pkg . ${{ inputs.recipe_id_full }} - name: Export the Package - if: ${{ inputs.conan_export_binaries != 'true' }} + if: ${{ !inputs.conan_export_binaries }} run: conan export . ${{ inputs.recipe_id_full }} - name: Remove the latest alias