From 10f2a23a40cfdc98765cbfc12fbe646099016dd3 Mon Sep 17 00:00:00 2001 From: Tim Hatch Date: Mon, 22 Jan 2024 11:50:38 -0800 Subject: [PATCH] Fetch tags on actions See https://github.com/actions/checkout/issues/1471 --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c3928fe..f85b5a5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,6 +21,9 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + fetch-depth: 0 + fetch-tags: true - name: Set Up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: