From a51e5d02f987e4d5c78afd3302edebadb63974bd Mon Sep 17 00:00:00 2001 From: Don McCurdy Date: Wed, 2 Oct 2024 12:16:01 -0400 Subject: [PATCH] configure actions/checkout --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dd4383f..6654ff9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,6 +14,9 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + fetch-depth: 10 + fetch-tags: true # References: # - https://stackoverflow.com/a/65616499