From 92818726b5d15db2dd9bcaad48a468cc157f46c4 Mon Sep 17 00:00:00 2001 From: Carlos Gomes Martinho Date: Mon, 24 Feb 2020 13:04:36 +0100 Subject: [PATCH] chore: use env variable for git workspace --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 44f2c3b..d6ade01 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -44,7 +44,7 @@ jobs: - name: Install conan dependencies working-directory: ${{runner.workspace}}/build - run: conan profile new default --detect && conan install .. --build missing + run: conan profile new default --detect && conan install $GITHUB_WORKSPACE --build missing - name: Configure CMake shell: bash