From 27db30bed82a33d46396e33f3a53196c623be1e0 Mon Sep 17 00:00:00 2001 From: Hiddify <114227601+hiddify1@users.noreply.github.com> Date: Tue, 18 Jul 2023 08:48:04 +0200 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 260d4750..aa8c9c8a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,14 +53,19 @@ jobs: - name: Release Android run: | make release-android - cp "$(find . -name '*.apk')" . + find ./ -type f -name "*.apk" -exec cp {} . \; - name: Release Windows run: | flutter_distributor package --platform windows --targets exe - cp "$(find . -name '*.exe')" . + find ./ -type f -name "*.exe" -exec cp {} . \; - uses: actions/upload-artifact@v3 with: name: apk path: ./*.apk + + - uses: actions/upload-artifact@v3 + with: + name: exe + path: ./*.exe