From c06c0b713341c0655d254b96e882ff31225567ea Mon Sep 17 00:00:00 2001 From: Dawid Dziurla Date: Sun, 22 Mar 2020 11:43:30 +0100 Subject: [PATCH] workflows: git fetch --unshallow before goreleaser step --- .github/workflows/cd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index e2f071fb7..792ac05dd 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -11,8 +11,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v2 - with: - fetch-depth: 0 + - name: Unshallow repo + run: git fetch --prune --unshallow - name: Setup Go uses: actions/setup-go@v1 with: