From feda7eed600a64cf2ed949c7b6e376f3aa277609 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 27 Feb 2026 11:43:45 +0000 Subject: [PATCH 1/2] Initial plan From 3a787de8f2e15a3dbd9ef3ae02322200a0e6e034 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 27 Feb 2026 11:46:01 +0000 Subject: [PATCH 2/2] Add APK artifact upload step to build.yml workflow Co-authored-by: CodeGather <8273021+CodeGather@users.noreply.github.com> --- .github/workflows/build.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 18e75d6..daeb555 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,4 +37,10 @@ jobs: # 打包 APK - name: Build Release apk run: flutter build apk --release - working-directory: example \ No newline at end of file + working-directory: example + # 发布 APK 至 artifact + - name: Upload Release APK + uses: actions/upload-artifact@v4 + with: + name: app-release.apk + path: example/build/app/outputs/apk/release/app-release.apk \ No newline at end of file