From 97e1425bc570638c5fd57d764c2c2b19fd058552 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Sun, 5 Mar 2023 11:14:45 +0100 Subject: [PATCH] ci: `conan user` was replaced with `conan remote login` in Conan 2.0 --- .github/workflows/ci-conan.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-conan.yml b/.github/workflows/ci-conan.yml index 8f2ddc71..77d3d8d5 100644 --- a/.github/workflows/ci-conan.yml +++ b/.github/workflows/ci-conan.yml @@ -264,9 +264,9 @@ jobs: if: github.ref == 'refs/heads/master' || env.CHANNEL == 'stable' shell: bash run: | - conan user ${{ secrets.CONAN_LOGIN_USERNAME }} -r artifactory -p ${{ secrets.CONAN_PASSWORD }} - conan upload "mp-units*" --all -r artifactory --confirm + conan remote login artifactory ${{ secrets.CONAN_LOGIN_USERNAME }} -p ${{ secrets.CONAN_PASSWORD }} + conan upload "mp-units*" -r artifactory --confirm - name: Remove mp-units package from Conan local cache shell: bash run: | - conan remove mp-units -c + conan remove mp-units --confirm