From a3790b1e290c1f8f5a1b94e0358b2c8acf42865d Mon Sep 17 00:00:00 2001 From: Omar Hatem Date: Wed, 31 Jan 2024 16:05:03 +0200 Subject: [PATCH] Add missing packages pub get, to model generator [skip ci] (#1286) --- .github/workflows/pr_test_build.yml | 2 ++ configure_cake_wallet.sh | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/pr_test_build.yml b/.github/workflows/pr_test_build.yml index 6e5f9e171..88dd2c1eb 100644 --- a/.github/workflows/pr_test_build.yml +++ b/.github/workflows/pr_test_build.yml @@ -111,6 +111,8 @@ jobs: cd cw_haven && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs && cd .. cd cw_bitcoin_cash && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs && cd .. cd cw_nano && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs && cd .. + cd cw_ethereum && flutter pub get && cd .. + cd cw_polygon && flutter pub get && cd .. flutter packages pub run build_runner build --delete-conflicting-outputs - name: Add secrets diff --git a/configure_cake_wallet.sh b/configure_cake_wallet.sh index a4b6f2654..5009cd9e3 100755 --- a/configure_cake_wallet.sh +++ b/configure_cake_wallet.sh @@ -30,4 +30,6 @@ cd cw_bitcoin && flutter pub get && flutter packages pub run build_runner build cd cw_haven && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs && cd .. cd cw_nano && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs && cd .. cd cw_bitcoin_cash && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs && cd .. +cd cw_ethereum && flutter pub get && cd .. +cd cw_polygon && flutter pub get && cd .. flutter packages pub run build_runner build --delete-conflicting-outputs