From dda83cda4ba01cf475b49e68c31f4a39c00bf081 Mon Sep 17 00:00:00 2001 From: resonic-user Date: Thu, 26 Jun 2025 12:10:41 +0200 Subject: [PATCH] force build --- .github/workflows/cache-verify.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/cache-verify.yml b/.github/workflows/cache-verify.yml index a07b083bc..45b9f4e95 100644 --- a/.github/workflows/cache-verify.yml +++ b/.github/workflows/cache-verify.yml @@ -227,6 +227,13 @@ jobs: cd webapp && yarn install --frozen-lockfile && cd .. npx cypress verify || echo "⚠️ Cypress not yet verified" + # force rebuild regardless of cache state + - name: ⚙️ Always rebuild backend & webapp + run: | + echo "🔧 Forcing backend & webapp build..." + cd backend && yarn build && cd .. + cd webapp && yarn build && cd .. + #build backend - name: Build backend run: cd backend && yarn build