From 6db2f9383f704d4cb5f3efa4ca81c4b41804b68f Mon Sep 17 00:00:00 2001 From: Dan Tsekhanskiy Date: Tue, 24 Mar 2026 19:17:10 -0400 Subject: [PATCH] fix: Add missing step ID for setup-go in release workflow GOVERSION env var was empty because the setup-go step had no id, causing GoReleaser ldflags to fail and produce a release with 0 assets. --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4f42eef..a185f1c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,8 @@ jobs: with: fetch-depth: 0 - - uses: actions/setup-go@v5 + - id: setup-go + uses: actions/setup-go@v5 with: go-version-file: go.mod