From ddc2b301904377ae30e3663d0d468e70ddba4ccd Mon Sep 17 00:00:00 2001 From: Cameron Otsuka Date: Mon, 29 Dec 2025 23:08:11 -0800 Subject: [PATCH] use default astro image cache location --- .github/workflows/deploy-to-ghpages.yml | 2 +- astro.config.mjs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/deploy-to-ghpages.yml b/.github/workflows/deploy-to-ghpages.yml index 24b4f8b..3c541e8 100644 --- a/.github/workflows/deploy-to-ghpages.yml +++ b/.github/workflows/deploy-to-ghpages.yml @@ -40,7 +40,7 @@ jobs: - name: Restore Astro image cache uses: actions/cache@v5 with: - path: .astro-cache/assets/ + path: node_modules/.astro-cache/assets/ key: astro-images-${{ hashFiles('src/assets/**/*', 'content/**/*.gif', 'content/**/*.jpg', 'content/**/*.png', 'content/**/*.svg', 'content/**/*.webp') }} restore-keys: | astro-images- diff --git a/astro.config.mjs b/astro.config.mjs index 08176cd..2f60963 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -8,7 +8,6 @@ import sitemap from '@astrojs/sitemap'; export default defineConfig({ site: 'https://cameron.otsuka.systems', - cacheDir: './.astro-cache', integrations: [ icon({ include: { -- 2.52.0