fix: include VERSION in the output filename for the client build

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
Sarto
2026-04-26 17:06:36 +03:30
parent f40af8fbb1
commit b9aefabbd1
+1 -1
View File
@@ -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