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