From 2845b9a42bc727b09c0065032f18c30560bd5f79 Mon Sep 17 00:00:00 2001 From: "j.spijker@ultimaker.com" Date: Wed, 3 Aug 2022 16:11:50 +0200 Subject: [PATCH] Export-pkg requires a build dir Contributes to CURA-8831 --- .github/workflows/conan-recipe-export.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/conan-recipe-export.yml b/.github/workflows/conan-recipe-export.yml index cbba62d319..10cfa0c461 100644 --- a/.github/workflows/conan-recipe-export.yml +++ b/.github/workflows/conan-recipe-export.yml @@ -81,7 +81,9 @@ jobs: - name: Export the Package (binaries) if: ${{ inputs.conan_export_binaries }} - run: conan export-pkg . ${{ inputs.recipe_id_full }} + run: | + mkdir -p venv + conan export-pkg . ${{ inputs.recipe_id_full }} - name: Export the Package if: ${{ !inputs.conan_export_binaries }}