From f14ee1b755cce128d3fbc6860bb5ddf2d3df73c9 Mon Sep 17 00:00:00 2001 From: robot Date: Sun, 2 Aug 2026 04:49:58 +0000 Subject: [PATCH] fix(ci): use 'stable' for Flutter version instead of non-existent 3.41.x The Mac runner cannot resolve Flutter 3.41.x (does not exist). Switch to 'stable' so the subosito/flutter-action always picks the latest stable release regardless of runner architecture. --- .gitea/workflows/ci.yml | 2 +- .gitea/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 637152c..7e5b872 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -16,7 +16,7 @@ concurrency: cancel-in-progress: true env: - FLUTTER_VERSION: "3.41.x" + FLUTTER_VERSION: "stable" jobs: # ── Stage 1: Lint & static analysis ────────────────────────────── diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 4d73f82..2eae14d 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -10,7 +10,7 @@ on: - "v*" env: - FLUTTER_VERSION: "3.41.x" + FLUTTER_VERSION: "stable" jobs: # ── Lint (gate) ─────────────────────────────────────────────