diff --git a/.github/workflows/android-release.yml b/.github/workflows/android-release.yml index 6dd779eb..8ca61165 100644 --- a/.github/workflows/android-release.yml +++ b/.github/workflows/android-release.yml @@ -56,12 +56,15 @@ jobs: run: flutter pub get - name: Build APPBUNDLE - run: flutter build appbundle --release + run: flutter build appbundle + + - name: Build APK + run: flutter build apk --split-per-abi - name: Create Github Release uses: ncipollo/release-action@v1 with: - artifacts: "build/app/outputs/bundle/release/*.aab" + artifacts: "build/app/outputs/bundle/release/*.aab,build/app/outputs/bundle/release/*.apk" # tag: $GIT_TAG_NAME # token: ${{ secrets.PERSONAL_RELEASE_TOKEN }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cb9868a3..030c4714 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,6 +17,7 @@ jobs: with: flutter-version: '3.16.3' # or, you can use 1.22 channel: 'stable' + cache: true - run: flutter test --coverage - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v3