From f8dd2df95326d6b55c73504b29ec5867d61270c1 Mon Sep 17 00:00:00 2001 From: mauwii Date: Fri, 28 Oct 2022 17:02:00 +0200 Subject: [PATCH] remove conda cache --- .github/workflows/test-invoke-conda.yml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/.github/workflows/test-invoke-conda.yml b/.github/workflows/test-invoke-conda.yml index 7523c6164f..5ce25ab3f5 100644 --- a/.github/workflows/test-invoke-conda.yml +++ b/.github/workflows/test-invoke-conda.yml @@ -71,24 +71,6 @@ jobs: [[ -r models/ldm/stable-diffusion-v1/model.ckpt ]] \ || curl -o models/ldm/stable-diffusion-v1/model.ckpt ${{ secrets.SD_V1_4_URL }} - - name: Use cached Conda Environment - uses: actions/cache@v3 - env: - cache-name: cache-conda-env-${{ env.CONDA_ENV_NAME }} - conda-env-file: ${{ matrix.environment-file }} - with: - path: ${{ env.CONDA }}/envs/${{ env.CONDA_ENV_NAME }} - key: env-${{ env.cache-name }}-${{ runner.os }}-${{ hashFiles(env.conda-env-file) }} - - - name: Use cached Conda Packages - uses: actions/cache@v3 - env: - cache-name: cache-conda-pkgs-${{ env.CONDA_ENV_NAME }} - conda-env-file: ${{ matrix.environment-file }} - with: - path: ${{ env.CONDA_PKGS_DIR }} - key: pkgs-${{ env.cache-name }}-${{ runner.os }}-${{ hashFiles(env.conda-env-file) }} - - name: Activate Conda Env uses: conda-incubator/setup-miniconda@v2 with: