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