From 15a0440f7643984df41d139ae84c5c8f1ffe227d Mon Sep 17 00:00:00 2001 From: Leon Rauschning <99650940+lrauschning@users.noreply.github.com> Date: Thu, 19 Dec 2024 15:55:43 +0800 Subject: [PATCH] Reapply "add conda init before conda activate" This reverts commit 17a0296ca9bb2b5baef7a1d889da7bdeef93c4a4. --- action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/action.yml b/action.yml index 3db5248..7b85aba 100644 --- a/action.yml +++ b/action.yml @@ -36,6 +36,7 @@ runs: # shell: bash - name: Setup conda env run: | + $CONDA/bin/conda init $CONDA/bin/conda env create -n msyd --file ./environment.yml $CONDA/bin/conda activate msyd shell: bash