From 0e96a6499bcd88df4c1794b23c368c7b6c89d725 Mon Sep 17 00:00:00 2001 From: spiritlhl <103393591+spiritLHLS@users.noreply.github.com> Date: Tue, 13 Jan 2026 12:03:44 +0800 Subject: [PATCH] Update build_binary.yaml to disable certain options Disable large packages, Docker images, and swap storage in the build workflow. --- .github/workflows/build_binary.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_binary.yaml b/.github/workflows/build_binary.yaml index 4015fac..84a91ff 100644 --- a/.github/workflows/build_binary.yaml +++ b/.github/workflows/build_binary.yaml @@ -31,9 +31,9 @@ jobs: android: true dotnet: true haskell: true - large-packages: true - docker-images: true - swap-storage: true + large-packages: false + docker-images: false + swap-storage: false - name: Set up Go uses: actions/setup-go@v4