From 6300ffde8e1d04035f90c8dd9cad62f490a54839 Mon Sep 17 00:00:00 2001 From: Siddharth Krishna Date: Mon, 26 Feb 2024 17:43:18 +0200 Subject: [PATCH] Fix cache dir (this time I'm serious) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 85f9728..1c858a0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -115,7 +115,7 @@ jobs: id: cache uses: actions/cache/restore@v4 with: - path: ${{ github.workspace }}/xl2times/.cache + path: ${{ github.workspace }}/xl2times/xl2times/.cache # Cache key is refs of the input xlsx repos, since that's what is cached key: ${{ runner.os }}-py-${{ env.PY_VERSION }}-${{ env.REF_demos-xlsx }}-${{ env.REF_tim }} # If we can't find the exact key for the TIM repo, still use the cache if the demos repo ref matches @@ -166,5 +166,5 @@ jobs: # Save the cache even if the regression tests fail if: always() && !steps.cache-restore.outputs.cache-hit with: - path: ${{ github.workspace }}/xl2times/.cache + path: ${{ github.workspace }}/xl2times/xl2times/.cache key: ${{ runner.os }}-py-${{ env.PY_VERSION }}-${{ env.REF_demos-xlsx }}-${{ env.REF_tim }}