Skip to content

Commit

Permalink
hotfix: files generation in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
maelchiotti committed Nov 23, 2024
1 parent 8cd04f3 commit aced7e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 0 additions & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit aced7e9

Please sign in to comment.