From 5a936e4f96385b3c2f0dbabe93e4286b73f92ae5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Fr=C3=B3es=20Franco?= Date: Wed, 3 Jun 2026 22:33:08 -0300 Subject: [PATCH] fix: add checkout step to release job for git commands download-artifact@v3 doesn't create a git repo, so git log/git tag fail in the release notes generation step. --- .gitea/workflows/release.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 37684d8..b1da329 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -94,6 +94,10 @@ jobs: needs: build runs-on: ubuntu-latest steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Download all build artifacts # download-artifact@v3 nests each artifact under its own dir # (artifacts//), so recurse.