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 }}