From e00b7b0bbfa0be8acbf103b0e1561667315cc631 Mon Sep 17 00:00:00 2001 From: Kshitij B Date: Sun, 28 Apr 2024 05:07:53 +0000 Subject: [PATCH] Update android.yml --- .github/workflows/android.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index fb9b163..e63b606 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -11,13 +11,19 @@ jobs: runs-on: ubuntu-latest steps: - - name: checkout all the submodules + - name: Checkout all the submodules uses: actions/checkout@v4 with: submodules: true - name: Install dependencies - run: submodules/flutter/bin/flutter pub get + run: | + submodules/flutter/bin/flutter config --no-analytics + submodules/flutter/bin/flutter pub get - name: Build run: submodules/flutter/bin/flutter build apk --split-per-abi + + - name: Download all workflow run artifacts + uses: actions/download-artifact@v4 +