From aced7e92ed3c9e8f16c530f1fd4fac825242b2ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Chiotti?= <44336112+maelchiotti@users.noreply.github.com> Date: Sat, 23 Nov 2024 18:04:38 +0100 Subject: [PATCH] hotfix: files generation in CI --- .github/workflows/release.yaml | 4 +++- fastlane/Fastfile | 1 - 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0c7d3654..3540e1d9 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -56,7 +56,9 @@ jobs: - name: Add fastlane supply key run: echo "${{ secrets.FASTLANE_SUPPLY_KEY }}" | base64 -d > fastlane/localmaterialnotes_fastlane-supply_key.json - name: Generate files - run: dart run build_runner build + run: | + dart run build_runner build + flutter gen-l10n - name: Run fastlane run: bundle exec fastlane deploy_production diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 556d777b..3426e882 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -3,7 +3,6 @@ default_platform(:android) platform :android do desc "Build AAB" lane :build_aab do - sh("flutter gen-l10n") sh("flutter build appbundle --release") end