From 45b340798d3970305661cbbbb120c6c11c70aa20 Mon Sep 17 00:00:00 2001 From: m1ngsama Date: Sun, 28 Dec 2025 13:52:40 +0800 Subject: [PATCH] fix(ci): Update binary name from tut2 to tut The executable was renamed from tut2 to tut when v2 architecture was consolidated into main codebase. Update CI workflow to match. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 29be9c4..f1f980e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -47,7 +47,7 @@ jobs: - name: Rename binary with platform suffix run: | - mv build/tut2 build/tut-${{ matrix.name }} + mv build/tut build/tut-${{ matrix.name }} - name: Upload artifact uses: actions/upload-artifact@v4