From f7893b3ea9e16c23e800223ed92f617c98afb8e6 Mon Sep 17 00:00:00 2001 From: mauwii Date: Mon, 17 Oct 2022 01:48:22 +0200 Subject: [PATCH] export conda env instead of only print versions --- .github/workflows/test-invoke-conda.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/test-invoke-conda.yml b/.github/workflows/test-invoke-conda.yml index fb5a785a0b..beea66310e 100644 --- a/.github/workflows/test-invoke-conda.yml +++ b/.github/workflows/test-invoke-conda.yml @@ -97,10 +97,7 @@ jobs: environment-file: ${{ matrix.environment-file }} - name: list conda packages - run: | - conda list \ - -n invokeai | \ - awk ' {print " - " $1 "==" $2;} ' + run: conda env export --name ${{ env.CONDA_ENV_NAME }} - name: Use Cached Huggingface and Torch models id: cache-hugginface-torch