From e581c0e5c6e69611cc62cf32b6292bca14af407b Mon Sep 17 00:00:00 2001 From: appleboy Date: Sat, 4 Jan 2025 16:57:56 +0800 Subject: [PATCH] ci: improve CI workflows and API integration for better performance - Add `fetch-depth: 0` to the `actions/checkout` step in the `goreleaser.yml` 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 d8f7008..da8f92d 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