From 16b46fb5f18f1f98bb9115ccd7bcdcf9ca8feb4f Mon Sep 17 00:00:00 2001 From: rcourtman Date: Tue, 11 Nov 2025 15:44:00 +0000 Subject: [PATCH] Fix release workflow: fetch git tags for changelog generation The checkout wasn't fetching tags despite fetch-depth: 0. Explicitly run git fetch --tags --force after checkout. --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aea2c2735..ad58d91b1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -120,6 +120,9 @@ jobs: with: fetch-depth: 0 # Fetch all history for tags + - name: Fetch all tags + run: git fetch --tags --force + - name: Set up Go uses: actions/setup-go@v5 with: