From 7033ed324e6c3684fca068b3556fc1d69c392f7e Mon Sep 17 00:00:00 2001 From: Raymond Kim Date: Thu, 25 Jan 2024 11:04:05 -0500 Subject: [PATCH] #0: Use fetch-depth: 0 instead of fetch-tags because of https://github.com/actions/checkout/issues/1467 --- .github/workflows/package-and-release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/package-and-release.yaml b/.github/workflows/package-and-release.yaml index 7ce0c85b39f..01dc950ea64 100644 --- a/.github/workflows/package-and-release.yaml +++ b/.github/workflows/package-and-release.yaml @@ -21,7 +21,7 @@ jobs: - name: Checkout uses: actions/checkout@v3 with: - fetch-tags: true + fetch-depth: 0 - name: Get is-release-candidate id: get-is-release-candidate run: |