From a7c52c7ecabc938ec86321b3305eca8d702dd39b Mon Sep 17 00:00:00 2001 From: appleboy Date: Sat, 4 Jan 2025 20:42:57 +0800 Subject: [PATCH] ci: improve CI workflows and API integration - Add `fetch-depth: 0` to the checkout action in the goreleaser workflow Signed-off-by: appleboy --- .github/workflows/goreleaser.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/goreleaser.yml b/.github/workflows/goreleaser.yml index d9182377..b00b7a08 100644 --- a/.github/workflows/goreleaser.yml +++ b/.github/workflows/goreleaser.yml @@ -14,6 +14,8 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Setup go uses: actions/setup-go@v5