From aa9229a67c0cccfb38aad90ed6ddb0d8708ddc76 Mon Sep 17 00:00:00 2001 From: Jonathon Anderson Date: Thu, 18 Apr 2024 17:11:17 -0600 Subject: [PATCH] Fetch all history during tagged-release Tags are required during tagged-release, but attempting to fetch only tags caused an error of the form: Cannot fetch both and refs/tags/ to refs/tags/ Switching to just downloading all history. Signed-off-by: Jonathon Anderson --- .github/workflows/tagged-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tagged-release.yml b/.github/workflows/tagged-release.yml index 86260d90..cfda1d93 100644 --- a/.github/workflows/tagged-release.yml +++ b/.github/workflows/tagged-release.yml @@ -15,7 +15,7 @@ jobs: - name: Checkout Code uses: actions/checkout@v4 with: - fetch-tags: true + fetch-depth: 0 - name: Build spec and dist run: |