From 84578b6afde075d0e31e0c6b9aa46f27beb45f1b Mon Sep 17 00:00:00 2001 From: Fabian Freund Date: Sun, 24 Aug 2025 08:32:53 +0200 Subject: [PATCH] remove verbose flags from build --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 70115b3a..0af03745 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -88,12 +88,12 @@ jobs: - name: Build APK working-directory: app - run: flutter build apk --verbose --release --split-per-abi --no-tree-shake-icons + run: flutter build apk --release --split-per-abi --no-tree-shake-icons - name: Build App Bundle if: steps.build-type.outputs.is_prerelease == 'false' working-directory: app - run: flutter build appbundle --verbose --no-tree-shake-icons + run: flutter build appbundle --no-tree-shake-icons - name: Create github artifact release (Prerelease) if: steps.build-type.outputs.is_prerelease == 'true'