From 3f11ca58e46fccda7e710bf56facfaedd8aea48d Mon Sep 17 00:00:00 2001 From: Cameron Otsuka Date: Mon, 29 Dec 2025 11:49:58 -0800 Subject: [PATCH] another try at cache paths --- .github/workflows/deploy-to-ghpages.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy-to-ghpages.yml b/.github/workflows/deploy-to-ghpages.yml index 004cafc..9c5167f 100644 --- a/.github/workflows/deploy-to-ghpages.yml +++ b/.github/workflows/deploy-to-ghpages.yml @@ -27,8 +27,8 @@ jobs: - name: Restore Astro image cache uses: actions/cache@v5 with: - path: .astro-cache/assets - key: astro-images-${{ hashFiles('.astro-cache/assets/**/*') }} + path: .astro-cache/assets/ + key: astro-images-${{ hashFiles('src/assets/**/*', 'src/content/**/*.{gif,jpg,png,svg,webp}') }} restore-keys: | astro-images- @@ -36,7 +36,7 @@ jobs: uses: actions/cache@v5 with: path: .og-cache/ - key: og-images-${{ hashFiles('.og-cache/**/*') }} + key: og-images-${{ hashFiles('.og-cache/*') }} restore-keys: | og-images- -- 2.52.0