diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 002a44274..56e709691 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -104,7 +104,17 @@ jobs: uses: subosito/flutter-action@v2 with: flutter-version: 3.24.2 - channel: any + channel: stable + + - name: 修复3.24的stable显示中文不正确问题 + run: | + cd $FLUTTER_ROOT + git config --global user.name "orz12" + git config --global user.email "orz12@test.com" + git cherry-pick d4124bd --strategy-option theirs + # flutter precache + flutter --version + cd - - name: 下载项目依赖 run: flutter pub get diff --git a/pubspec.lock b/pubspec.lock index e3178ba33..512514b31 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -1868,4 +1868,4 @@ packages: version: "3.1.2" sdks: dart: ">=3.5.0 <4.0.0" - flutter: ">=3.24.2" + flutter: ">=3.24.0"