From 657e747d86a710302be7bbf96249242c4ed1e10e Mon Sep 17 00:00:00 2001 From: jspijker Date: Wed, 22 Feb 2023 20:21:05 +0100 Subject: [PATCH] Revert "create the packages instead of install" This reverts commit 47912789fdfe1629634d3fb3774d41a37043f76c. --- .github/workflows/conan-package-create.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/conan-package-create.yml b/.github/workflows/conan-package-create.yml index 82242409b9..1c5f101189 100644 --- a/.github/workflows/conan-package-create.yml +++ b/.github/workflows/conan-package-create.yml @@ -149,11 +149,11 @@ jobs: - name: Create the Packages using lockfile if: ${{ inputs.build_info }} - run: conan create . ${{ inputs.recipe_id_full }} --build=missing --update --lockfile=conan.lock --lockfile-out=conan.lock + run: conan install ${{ inputs.recipe_id_full }} --build=missing --update --lockfile=conan.lock --lockfile-out=conan.lock - name: Create the Packages if: ${{ ! inputs.build_info }} - run: conan create . ${{ inputs.recipe_id_full }} --build=missing --update + run: conan install ${{ inputs.recipe_id_full }} --build=missing --update - name: Create the build info if: ${{ inputs.build_info }}