From ce10c700549d91afd3f22d1597337f9b3f58c6cc Mon Sep 17 00:00:00 2001 From: Luong NGUYEN Date: Wed, 1 Jul 2026 07:59:03 +0200 Subject: [PATCH] fix(pages): remove uv cache glob that broke on missing uv.lock astral-sh/setup-uv enable-cache defaults to keying off uv.lock, which this repo intentionally gitignores, so every push to main since 2026-06-17 failed at the cache step before the build ever ran. --- .github/workflows/pages.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 855f356..6e56f25 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -30,8 +30,6 @@ jobs: - name: Install uv uses: astral-sh/setup-uv@v4 - with: - enable-cache: true - name: Cache vendor assets uses: actions/cache@v4