From accb55baba652fff824ab28d10897c2f2f0d8643 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 25 Jun 2026 18:23:59 -0400 Subject: [PATCH] =?UTF-8?q?fix(ci):=20avoid=20cache:clear=20=E2=80=94=20us?= =?UTF-8?q?e=20config:clear=20+=20view:clear=20+=20clear-compiled=20instea?= =?UTF-8?q?d?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit optimize:clear calls cache:clear which needs the cache table from migrations (php artisan cache:table). This table doesn't exist in our schema. clear-compiled is sufficient to clear bootstrap/cache/*.php. --- .gitea/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index fccc02cc..893dac02 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -163,7 +163,10 @@ jobs: run: php artisan migrate:fresh --force - name: Clear caches - run: php artisan optimize:clear + run: | + php artisan config:clear + php artisan view:clear + php artisan clear-compiled - name: Run Unit tests continue-on-error: true