From f4543a6350d3ee6785d93aed10df1e0bc498ea1f Mon Sep 17 00:00:00 2001 From: Yoland Y <4950057+yoland68@users.noreply.github.com> Date: Fri, 19 Jul 2024 14:59:31 -0700 Subject: [PATCH] Add conda environment activation and pytorch installation --- action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/action.yml b/action.yml index e1e4636..4b8bd86 100644 --- a/action.yml +++ b/action.yml @@ -116,6 +116,8 @@ runs: if: ${{ inputs.os == 'macos' && inputs.torch_version == 'stable' }} shell: bash -el {0} run: | + conda env list + conda activate gha-comfyui-${{ inputs.python_version }}-${{ inputs.torch_version }} conda install pytorch::pytorch torchvision torchaudio -c pytorch - name: '[Unix-Linux-Only] Install Pytorch nightly'