mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
ci: add build flowy_sdk deps
This commit is contained in:
parent
0b0cbe192b
commit
bf7e1b9829
16
.github/workflows/dart_test.yml
vendored
16
.github/workflows/dart_test.yml
vendored
@ -19,12 +19,20 @@ jobs:
|
||||
- uses: subosito/flutter-action@v1
|
||||
with:
|
||||
channel: "stable"
|
||||
- name: Flutter pub get
|
||||
run: flutter pub get
|
||||
working-directory: frontend/app_flowy
|
||||
- name: Generate language files
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
- name: Deps Rust
|
||||
working-directory: frontend
|
||||
run: |
|
||||
cargo install --force cargo-make
|
||||
cargo install --force duckscript_cli
|
||||
cargo make flowy_dev
|
||||
echo PATH="$PATH":"$HOME/.pub-cache/bin" >> $GITHUB_PATH
|
||||
- name: Deps Flutter
|
||||
working-directory: frontend/app_flowy
|
||||
run:
|
||||
flutter pub get
|
||||
flutter pub run easy_localization:generate --source-dir ./assets/translations -f keys -O lib/generated -o locale_keys.g.dart
|
||||
- name: Build FlowySDK
|
||||
working-directory: frontend
|
||||
|
@ -119,7 +119,7 @@ IntegrationEnv integrationEnv() {
|
||||
if (Platform.environment.containsKey('FLUTTER_TEST')) {
|
||||
return IntegrationEnv.test;
|
||||
}
|
||||
final value = String.fromEnvironment('INTEGRATION_ENV');
|
||||
const value = String.fromEnvironment('INTEGRATION_ENV');
|
||||
if (value == 'release') {
|
||||
return IntegrationEnv.release;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user