fix: use full git history in release workflow for changelog generation

Replace shallow checkout + `git fetch --tags` with `fetch-depth: 0` so
GoReleaser has the full commit history between tags to generate release
notes.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Ahmet Alp Balkan
2026-03-23 15:53:12 -07:00
parent e4727d38f8
commit ccddf675d5

View File

@@ -25,7 +25,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v6
- run: git fetch --tags
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v6
with: