From 6f791c7cc4c9f31cdc9718074a4a9f94904450cc Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Tue, 2 Aug 2022 15:59:29 +0200 Subject: [PATCH] ci: Conan remote usage fixed --- .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 361030f8..8af77be7 100644 --- a/.github/workflows/ci-conan.yml +++ b/.github/workflows/ci-conan.yml @@ -214,7 +214,7 @@ jobs: shell: bash run: | conan config init - conan remote add upload https://mpusz.jfrog.io/artifactory/api/conan/conan-oss + conan remote add artifactory https://mpusz.jfrog.io/artifactory/api/conan/conan-oss if [[ "${{ matrix.config.compiler.type }}" == "GCC" || "${{ matrix.config.compiler.type }}" == "CLANG" ]]; then conan profile update settings.compiler.libcxx=${{ matrix.config.lib }} default fi @@ -240,8 +240,8 @@ jobs: - name: Upload mp-units Conan package shell: bash run: | - conan user ${{ secrets.CONAN_LOGIN_USERNAME }} -r https://mpusz.jfrog.io/artifactory/api/conan/conan-oss -p ${{ secrets.CONAN_PASSWORD }} - conan upload "mp-units*" --all -r https://mpusz.jfrog.io/artifactory/api/conan/conan-oss --confirm + conan user ${{ secrets.CONAN_LOGIN_USERNAME }} -r artifactory -p ${{ secrets.CONAN_PASSWORD }} + conan upload "mp-units*" --all -r artifactory --confirm - name: Remove mp-units package from Conan local cache shell: bash run: |