From 6744e2e68a13a541cfc330579868eed375b61626 Mon Sep 17 00:00:00 2001 From: rang <378694192@qq.com> Date: Sat, 25 Oct 2025 13:05:48 +0800 Subject: [PATCH] 12 --- .github/workflows/flutter-ci.yaml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/flutter-ci.yaml b/.github/workflows/flutter-ci.yaml index 8a48626..eb007d9 100644 --- a/.github/workflows/flutter-ci.yaml +++ b/.github/workflows/flutter-ci.yaml @@ -159,6 +159,7 @@ jobs: dist/vaani-linux-amd64.AppImage build_windows: + needs: test runs-on: windows-latest permissions: contents: write @@ -183,10 +184,10 @@ jobs: run: | flutter_distributor package --platform windows --targets msix,zip --skip-clean - - name: Upload Windows APP to Artifacts + - name: Upload Windows Artifacts uses: actions/upload-artifact@v4 with: - name: windows + name: windows-release-artifacts path: | dist/*/*.msix dist/*/*.zip @@ -218,6 +219,12 @@ jobs: with: name: linux-release-artifacts path: ./release-artifacts/linux + + - name: Download Linux Artifacts + uses: actions/download-artifact@v4 + with: + name: windows-release-artifacts + path: ./release-artifacts/windows - name: List downloaded files (for debugging) run: ls -R ./release-artifacts