From 9052d8d73e929727b66c6aa0e4882c47e02b1cbc Mon Sep 17 00:00:00 2001 From: Lorenzo Mangani Date: Sat, 14 Mar 2026 12:00:38 +0100 Subject: [PATCH] Fix conditions for packaging binaries for MacOS Signed-off-by: Lorenzo Mangani --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cfcf00b..b93d03b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -106,7 +106,7 @@ jobs: fi - name: Package binaries (Linux) - if: runner.os != 'Windows' + if: runner.os == 'Linux' run: | mkdir -p dist cp build/ace-qwen3 build/dit-vae build/ace-understand \ @@ -114,7 +114,7 @@ jobs: tar -C dist -czf "acestep-${{ matrix.name }}.tar.gz" . - name: Package binaries (macOS) - if: runner.os != 'macOS' + if: runner.os == 'macOS' run: | mkdir -p dist cp build/ace-qwen3 build/dit-vae build/ace-understand \