From 5d892f7fd96778cfe20160622f8ede91007342fe Mon Sep 17 00:00:00 2001 From: Cameron Otsuka Date: Mon, 16 Mar 2026 20:54:56 -0700 Subject: [PATCH] remove caching --- .github/workflows/deploy-to-ghpages.yml | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/.github/workflows/deploy-to-ghpages.yml b/.github/workflows/deploy-to-ghpages.yml index 18fa45f..4bde7b1 100644 --- a/.github/workflows/deploy-to-ghpages.yml +++ b/.github/workflows/deploy-to-ghpages.yml @@ -18,30 +18,8 @@ jobs: steps: - uses: actions/checkout@v6 - uses: oven-sh/setup-bun@v2 - - uses: actions/cache@v5 - with: - path: node_modules/ - key: bun-${{ hashFiles('bun.lock') }} - restore-keys: | - bun- - name: Install dependencies run: bun install --frozen-lockfile - - name: Type check - run: bun run typecheck - - name: Run tests - run: bun run test:run - - uses: actions/cache@v5 - with: - path: .astro-cache/assets/ - key: astro-images-${{ hashFiles('src/assets/**/*', 'content/**/*.gif', 'content/**/*.jpg', 'content/**/*.png', 'content/**/*.svg', 'content/**/*.webp') }} - restore-keys: | - astro-images- - - uses: actions/cache@v5 - with: - path: .og-cache/ - key: og-images-${{ hashFiles('content/**/*.md', 'content/**/*.mdx') }} - restore-keys: | - og-images- - name: Build site pages run: bun run build - name: Build search index -- 2.53.0