From cea0d8814d242ad9d5463f9d7dffb62f5c6ff246 Mon Sep 17 00:00:00 2001 From: Hiddify <114227601+hiddify1@users.noreply.github.com> Date: Tue, 18 Jul 2023 10:17:27 +0200 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aa8c9c8a..a970a7f2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,16 +55,17 @@ jobs: make release-android find ./ -type f -name "*.apk" -exec cp {} . \; - - name: Release Windows - run: | - flutter_distributor package --platform windows --targets exe - find ./ -type f -name "*.exe" -exec cp {} . \; - - uses: actions/upload-artifact@v3 with: name: apk path: ./*.apk + - name: Release Windows + run: | + dart pub global activate flutter_distributor + flutter_distributor package --platform windows --targets exe + find ./ -type f -name "*.exe" -exec cp {} . \; + - uses: actions/upload-artifact@v3 with: name: exe