From 3916d9fea0c8bd86829d569c0515c77bd19cd079 Mon Sep 17 00:00:00 2001 From: Aidan Heerdegen Date: Fri, 16 Aug 2024 13:02:17 +1000 Subject: [PATCH] path shenanigans --- .github/workflows/CI.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 2db4837..343e8f4 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -59,7 +59,7 @@ jobs: python-version: ["3.10", "3.11", "3.12"] env: - ARTIFACT_LOCATION: ./conda-local + ARTIFACT_LOCATION: ${{ github.workspace }}/conda-local # Steps represent a sequence of tasks that will be executed as part of the job steps: @@ -84,7 +84,7 @@ jobs: - name: Install conda package shell: bash -l {0} run: | - conda install -c file:///${{ env.ARTIFACT_LOCATION }} um2nc + conda install -c file://${{ env.ARTIFACT_LOCATION }} um2nc - name: List installed packages shell: bash -l {0}