From 8c2e134d091266aa7b5d8f0a75d7421f2468deec Mon Sep 17 00:00:00 2001 From: Cameron Otsuka Date: Mon, 29 Dec 2025 11:44:45 -0800 Subject: [PATCH] fix 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 a65cb0c..004cafc 100644 --- a/.github/workflows/deploy-to-ghpages.yml +++ b/.github/workflows/deploy-to-ghpages.yml @@ -27,15 +27,15 @@ jobs: - name: Restore Astro image cache uses: actions/cache@v5 with: - path: .astro-cache - key: astro-images-${{ hashFiles('.astro-cache/**/*') }} + path: .astro-cache/assets + key: astro-images-${{ hashFiles('.astro-cache/assets/**/*') }} restore-keys: | astro-images- - name: Restore OpenGraph image cache uses: actions/cache@v5 with: - path: .og-cache + path: .og-cache/ key: og-images-${{ hashFiles('.og-cache/**/*') }} restore-keys: | og-images- -- 2.52.0