From 259b80777ed990e5a713c6a4db73e8aae0ba70b0 Mon Sep 17 00:00:00 2001 From: overtrue Date: Wed, 9 Jul 2025 13:19:11 +0800 Subject: [PATCH] feat: align build-gui condition with build-rustfs --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e24796456..40e8e50ae 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -249,11 +249,11 @@ jobs: ossutil cp latest.json oss://rustfs-version/latest.json --force fi - # Build GUI (only for releases) + # Build GUI build-gui: name: Build GUI needs: [build-check, build-rustfs] - if: needs.build-check.outputs.build_type == 'release' + if: needs.build-check.outputs.should_build == 'true' runs-on: ${{ matrix.os }} timeout-minutes: 45 strategy: