-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,21 @@ | ||
name: 'Pre Build Tail App builds' | ||
description: 'Internal Action for Tail App' | ||
defaults: | ||
run: | ||
shell: bash | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Configure Flutter CLI | ||
shell: bash | ||
run: flutter config --no-cli-animations --enable-analytics --color | ||
- name: Enable Flutter tools | ||
shell: bash | ||
run: dart pub global activate flutter_gen --color && dart pub global activate intl_translation --color && dart pub global activate build_runner --color | ||
- name: Get dependencies | ||
shell: bash | ||
run: flutter pub get --color | ||
- name: Generate translation files | ||
shell: bash | ||
run: dart pub global run --color intl_translation:generate_from_arb --output-dir=lib/l10n --no-use-deferred-loading lib/Frontend/intn_defs.dart lib/l10n/*.arb | ||
- name: Generate dart .g files | ||
shell: bash | ||
run: dart pub global run --color build_runner build --delete-conflicting-outputs |