From ebd6a27c1a168aaea0a9b1a9216c62ca537e3741 Mon Sep 17 00:00:00 2001 From: Thomas SharedInbox Date: Wed, 13 May 2026 11:21:52 +0200 Subject: [PATCH] fix: use task build-linux-release in CI instead of raw fvm call The direct fvm call bypasses codegen and uses stale runner build cache. task build-linux-release runs _codegen as a dep and passes --no-pub. Co-Authored-By: Claude Sonnet 4.6 --- .forgejo/workflows/ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 09219ac..fec67f5 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -39,6 +39,4 @@ jobs: echo "experimental-features = nix-command flakes" >> ~/.config/nix/nix.conf - name: Build Linux - # The Taskfile task 'build-linux' currently builds --debug. - # You can add a 'build-linux-release' task or override it here. - run: nix develop --command fvm flutter build linux --release + run: nix develop --command task build-linux-release