From 47912789fdfe1629634d3fb3774d41a37043f76c Mon Sep 17 00:00:00 2001 From: jspijker Date: Wed, 22 Feb 2023 18:13:43 +0100 Subject: [PATCH] create the packages instead of install --- .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 1c5f101189..82242409b9 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 install ${{ inputs.recipe_id_full }} --build=missing --update --lockfile=conan.lock --lockfile-out=conan.lock + run: conan create . ${{ inputs.recipe_id_full }} --build=missing --update --lockfile=conan.lock --lockfile-out=conan.lock - name: Create the Packages if: ${{ ! inputs.build_info }} - run: conan install ${{ inputs.recipe_id_full }} --build=missing --update + run: conan create . ${{ inputs.recipe_id_full }} --build=missing --update - name: Create the build info if: ${{ inputs.build_info }}