diff --git a/.github/workflows/upload-conan-pkgs.yml b/.github/workflows/upload-conan-pkgs.yml index b38bd56..51cde1e 100644 --- a/.github/workflows/upload-conan-pkgs.yml +++ b/.github/workflows/upload-conan-pkgs.yml @@ -43,7 +43,15 @@ jobs: SHORT_REFNAME="${REFNAME:0:40}" CHANNEL="testing-${SHORT_REFNAME//\//_}" fi - conan create -s build_type=${{ matrix.build_type }} -s compiler.version=${{ matrix.compiler_version }} -s compiler.libcxx=${{ matrix.compiler_libcxx }} -b missing . --user=osp --channel=${CHANNEL} + conan create \ + -s build_type=${{ matrix.build_type }} \ + -s compiler.version=${{ matrix.compiler_version }} \ + -s compiler.libcxx=${{ matrix.compiler_libcxx }} \ + -b missing \ + --user=osp \ + --channel=${CHANNEL} \ + --update \ + . - name: Conan upload run: conan upload --confirm --remote osp '*' @@ -77,6 +85,12 @@ jobs: SHORT_REFNAME="${REFNAME:0:40}" CHANNEL="testing-${SHORT_REFNAME//\//_}" fi - conan create -s build_type=${{ matrix.build_type }} -b missing . --user=osp --channel=${CHANNEL} + conan create \ + -s build_type=${{ matrix.build_type }} \ + -b missing \ + --user=osp \ + --channel=${CHANNEL} \ + --update \ + . - name: Conan upload run: conan upload --confirm --remote osp '*'