From 1b5257f7557f64b93a40dbbd60304342a6d5d1bd Mon Sep 17 00:00:00 2001 From: Felix Holz Date: Fri, 9 Feb 2024 00:45:49 +0100 Subject: [PATCH] Update build_for_android.yml --- .github/workflows/build_for_android.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_for_android.yml b/.github/workflows/build_for_android.yml index 2850683..6a69339 100644 --- a/.github/workflows/build_for_android.yml +++ b/.github/workflows/build_for_android.yml @@ -46,11 +46,13 @@ jobs: - name: Build AAB run: flutter build appbundle --release --build-number ${{ steps.date.outputs.date }}01 --build-name ${{ env.GIT_TAG_NAME }} + - name: Build APK + run: flutter build apk --release --build-number ${{ steps.date.outputs.date }}01 --build-name ${{ env.GIT_TAG_NAME }} + - name: Create Github Release uses: ncipollo/release-action@v1 with: - artifacts: "build/app/outputs/bundle/release/*.aab" - token: ${{ secrets.PERSONAL_RELEASE_TOKEN }} + artifacts: "build/app/outputs/bundle/release/*.aab,build/app/outputs/bundle/release/*.apk" - name: Save APPBUNDLE to Artifacts uses: actions/upload-artifact@v2