From b9aefabbd17a53505ce727de3356955875076746 Mon Sep 17 00:00:00 2001 From: Sarto Date: Sun, 26 Apr 2026 17:06:36 +0330 Subject: [PATCH] fix: include VERSION in the output filename for the client build Co-authored-by: Copilot --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e3613cb..3ad8f44 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -87,7 +87,7 @@ jobs: if [ "${{ matrix.android_arm }}" = "true" ]; then out="build/thefeed-client-android-arm" else - out="build/thefeed-client-${{ matrix.goos }}-${{ matrix.goarch }}${ext}" + out="build/thefeed-client-${VERSION}-${{ matrix.goos }}-${{ matrix.goarch }}${ext}" fi go build -trimpath -ldflags="${LDFLAGS}" -o "$out" ./cmd/client