From 5dc7721d83417df77469325e47c53f0d5bd4245e Mon Sep 17 00:00:00 2001 From: Nate Pope Date: Wed, 18 Oct 2023 12:59:59 -0700 Subject: [PATCH] debug cache conda --- .github/workflows/tests.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index aaed7756d..e79bb52d3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -35,11 +35,7 @@ jobs: - name: find conda id: find-conda run: | - echo "$CONDA" - echo "$name" echo "name=CONDA::$CONDA" >> $GITHUB_OUTPUT - echo "$CONDA" - echo "$name" - name: fix conda permissions if: runner.os == 'macOS' @@ -47,12 +43,17 @@ jobs: # Fix incorrect conda permissions on mac that prevent cache restore. sudo chown -R $USER:staff $CONDA + - name: debugggg + run: | + echo "${{ steps.find-conda.outputs.CONDA }}/envs/${{ env.CONDA_ENV_NAME }}" + echo "${{ steps.find-conda.outputs.CONDA }}" + - name: cache conda id: cache uses: actions/cache@v3 env: # Increase this to reset the cache if the key hasn't changed. - CACHE_NUM: 7777 + CACHE_NUM: 7778 with: path: | ${{ steps.find-conda.outputs.CONDA }}/envs/${{ env.CONDA_ENV_NAME }}