From f084ddc1d4e9e94d49ab278766685e5eeff21f19 Mon Sep 17 00:00:00 2001 From: roomrys <38435167+roomrys@users.noreply.github.com> Date: Wed, 4 Sep 2024 13:36:57 -0700 Subject: [PATCH] Use . instead of $(pwd) --- .github/workflows/build_conda_ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_conda_ci.yml b/.github/workflows/build_conda_ci.yml index 4f010ba1b..6f8422629 100644 --- a/.github/workflows/build_conda_ci.yml +++ b/.github/workflows/build_conda_ci.yml @@ -163,9 +163,9 @@ jobs: conda-solver: "libmamba" - name: Create conda environment - run: conda create -y -n sleap_test -c $(pwd)/build ${{ matrix.conda-channels }} sleap + run: conda create -y -n sleap_test -c ./build ${{ matrix.conda-channels }} sleap - - name: Activate virtual environment + - name: Activate conda environment run: conda activate sleap_test - name: Install test packages