From eb54957f99cd4e16dec0d4f78516e186bcebd552 Mon Sep 17 00:00:00 2001 From: Cameron Otsuka Date: Mon, 29 Dec 2025 11:58:28 -0800 Subject: [PATCH] i wish there was a way to test cache actions locally --- .github/workflows/deploy-to-ghpages.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-to-ghpages.yml b/.github/workflows/deploy-to-ghpages.yml index 9c5167f..f5e0835 100644 --- a/.github/workflows/deploy-to-ghpages.yml +++ b/.github/workflows/deploy-to-ghpages.yml @@ -28,7 +28,7 @@ jobs: uses: actions/cache@v5 with: path: .astro-cache/assets/ - key: astro-images-${{ hashFiles('src/assets/**/*', 'src/content/**/*.{gif,jpg,png,svg,webp}') }} + key: astro-images-${{ hashFiles('src/assets/**/*', '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('content/**/*.{md,mdx}') }} restore-keys: | og-images- -- 2.52.0