From 994e46f7c46aaba764fa7d5149066c654ec124af Mon Sep 17 00:00:00 2001 From: Hansung Kim Date: Wed, 4 Oct 2023 18:20:26 -0700 Subject: [PATCH] [ci] Attempt to fix conda init --- .github/actions/create-conda-env/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/create-conda-env/action.yml b/.github/actions/create-conda-env/action.yml index 1c302764..9960a2c5 100644 --- a/.github/actions/create-conda-env/action.yml +++ b/.github/actions/create-conda-env/action.yml @@ -5,6 +5,8 @@ runs: steps: - name: Create conda environments run: | + echo $(which conda) + conda init bash if conda env list | grep -q "envs/${{ env.conda-env-name-no-time }}"; then echo "Using pre-existing conda environments with prefix ${{ env.conda-env-name-no-time }}" else