From: Cameron Otsuka Date: Tue, 17 Mar 2026 03:54:56 +0000 (-0700) Subject: remove caching X-Git-Url: https://git.otsuka.systems/?a=commitdiff_plain;h=5d892f7fd96778cfe20160622f8ede91007342fe;p=cotsuka.github.io remove caching --- 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