From 1fd92e0228accb0339ba5bb74cb5766fe4924795 Mon Sep 17 00:00:00 2001 From: Tym Rabchuk Date: Thu, 9 Apr 2026 20:50:08 -0400 Subject: [PATCH] Pass version tag to binary build so devkit --version shows release tag The binaries job does a shallow checkout with no tags, so git describe falls back to the commit SHA. Pass VERSION explicitly from the version job output to embed the correct release tag (e.g. v2.0.37). --- .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 048eaa1..a72e3f8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -169,7 +169,7 @@ jobs: cache-dependency-path: src/go.sum - name: Build binary - run: make build-for GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} + run: make build-for GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} VERSION=v${{ needs.version.outputs.version }} - name: Upload release asset env: