From 5e620f6cb8379e47aa91bbb09cc333e65347863d Mon Sep 17 00:00:00 2001 From: toshimaru Date: Mon, 11 May 2020 00:14:33 +0900 Subject: [PATCH] Unshallow Fetch before runnig goreleaser --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8df19153..e984e1cd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,6 +9,8 @@ jobs: name: goreleaser steps: - uses: actions/checkout@v2 + - name: Unshallow Fetch + run: git fetch --prune --unshallow - uses: actions/setup-go@v2-beta with: go-version: '^1.14.0'