From 8a4e7e9de8b1d08ff572eb47a8f2934b1a6f0935 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 aea2c27..ad58d91 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: