From 02408f1899dbffefed381c9da1e8fdc3ce20939e Mon Sep 17 00:00:00 2001 From: xmaihh Date: Fri, 9 Aug 2024 15:11:31 +0800 Subject: [PATCH] fix: :bug: refactor CI workflow for verbose build commands and additional dependencies --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ebbd07d..77d6e26 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -169,20 +169,20 @@ jobs: if: matrix.name == 'linux' run: | sudo apt-get update -y - sudo apt-get install -y ninja-build libgtk-3-dev - flutter build linux + sudo apt-get install -y clang cmake ninja-build pkg-config libgtk-3-dev mpv libmpv-dev dpkg-dev zip + flutter build linux --verbose - name: Build Windows if: matrix.name == 'windows' - run: flutter build windows + run: flutter build windows --verbose - name: Build iOS if: matrix.name == 'ios' - run: flutter build ios --release --no-codesign + run: flutter build ios --verbose --no-codesign - name: Build macOS if: matrix.name == 'macos' - run: flutter build macos + run: flutter build macos --verbose # 部署Web平台构建产物到GitHub Pages - name: Deploy to GitHub Pages