diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index 398e125..249f3b8 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -1,4 +1,5 @@ -name: download package from conan center and upload it and dpendency to jfrog artifactory +name: sync +description: download package from conan center and upload it and dpendency to jfrog artifactory on: workflow_dispatch: inputs: @@ -12,7 +13,7 @@ on: default: 'false' jobs: - sync-to-artifactory: + sync: runs-on: ubuntu-latest env: CONAN_REVISIONS_ENABLED: 1 @@ -31,12 +32,13 @@ jobs: - name: Configure Conan remote run: | + conan remote add default-conan-local https://milvus01.jfrog.io/artifactory/api/conan/default-conan-local - name: Install package run: | conan remote list - conan install ${{ github.event.inputs.package }} -s compiler=gcc -s compiler.version=11 -s compiler.libcxx=libstdc++11 -s build_type=Release + conan install ${{ github.event.inputs.package }}@ -s compiler=gcc -s compiler.version=11 -s compiler.libcxx=libstdc++11 -s build_type=Release - name: inspect installed package run: |