We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 494547e commit 2e55076Copy full SHA for 2e55076
1 file changed
.github/workflows/ci.yml
@@ -10,7 +10,7 @@ jobs:
10
steps:
11
# 1. 拉取代码
12
- name: Checkout code
13
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
14
15
# 2. 设置 Python
16
- name: Set up Python
@@ -31,12 +31,12 @@ jobs:
31
flutter-version: '3.29.2' # 建议和本地一致
32
channel: stable
33
34
- # 5. 打包 Windows 应用
+ # 5. 打包 Windows 应用(禁用 Rich Unicode 输出)
35
- name: Build Windows app
36
run: |
37
chcp 65001
38
set PYTHONIOENCODING=utf-8
39
- flet build windows
+ flet build windows --no-color
40
41
# 6. 上传打包结果(可下载)
42
- name: Upload artifact
0 commit comments