From bf64869b312be6b8202c508fdf71095d7f5d5dda Mon Sep 17 00:00:00 2001 From: Cameron Otsuka Date: Mon, 29 Dec 2025 12:06:39 -0800 Subject: [PATCH] brace expansion doesn't work --- .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 857cb05..3bafc73 100644 --- a/.github/workflows/deploy-to-ghpages.yml +++ b/.github/workflows/deploy-to-ghpages.yml @@ -28,13 +28,13 @@ jobs: uses: actions/cache@v5 with: path: .astro-cache/assets/ - key: astro-images-${{ hashFiles('src/assets/**/*', 'content/**/*.{gif,jpg,png,svg,webp}') }} + key: astro-images-${{ hashFiles('src/assets/**/*', 'content/**/*.gif', 'content/**/*.jpg', 'content/**/*.png', 'content/**/*.svg', 'content/**/*.webp') }} - name: Restore OpenGraph image cache uses: actions/cache@v5 with: path: .og-cache/ - key: og-images-${{ hashFiles('content/**/*.{md,mdx}') }} + key: og-images-${{ hashFiles('content/**/*.md', 'content/**/*.mdx') }} - name: Build run: bun run build -- 2.52.0