From 593cce9ad07f5c2c6399314d3ceacd86b6a5019a Mon Sep 17 00:00:00 2001 From: Lakshay <83589511+TESLA2402@users.noreply.github.com> Date: Thu, 11 Jan 2024 02:55:26 +0530 Subject: [PATCH] :construction_worker: Update release.yml --- .github/workflows/release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f0cd2e8..a91d1fe 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,8 +38,12 @@ jobs: # Runs a set of commands using the runners shell - name: Start release build run: flutter build apk --no-tree-shake-icons --debug + + - name: Start release build for different cpu architectures + run: flutter build apk --split-per-abi --no-tree-shake-icons --debug + - name: Create Release uses: ncipollo/release-action@v1.13.0 with: - artifacts: "flutter_supabase/build/app/outputs/flutter-apk/app-debug.apk" + artifacts: "flutter_supabase/build/app/outputs/flutter-apk/*.apk" tag: v1.0.${{ github.run_number }}