From 9fc545e04db541bc5e40cd22102f1ef2f7945253 Mon Sep 17 00:00:00 2001 From: xkeyC <39891083+xkeyC@users.noreply.github.com> Date: Sun, 17 Mar 2024 19:47:00 +0800 Subject: [PATCH] fix --- .github/workflows/windows_nightly.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/windows_nightly.yml b/.github/workflows/windows_nightly.yml index 4839d7b..09abb8c 100644 --- a/.github/workflows/windows_nightly.yml +++ b/.github/workflows/windows_nightly.yml @@ -26,8 +26,10 @@ jobs: - name: Set up Rust uses: dtolnay/rust-toolchain@stable - - run: rustup --version - - run: cargo --version + - name: Rust Version + run: | + rustup --version + cargo --version - name: Rust Cache uses: Swatinem/rust-cache@v2 with: @@ -41,7 +43,8 @@ jobs: - name: Flutter pub get run: flutter pub get - + - name: Flutter build runner + run: dart run build_runner build --delete-conflicting-outputs - name: Rust cargo update run: cargo update working-directory: rust @@ -56,8 +59,7 @@ jobs: - name: flutter gen l10n run: | flutter pub add intl_utils - flutter pub run intl_utils:generate - + flutter pub run intl_utils:generate - name: Flutter build Windows run: flutter build windows