From a41f03c6b2f17045ec347dbaa0f86f8ce59dfd6f Mon Sep 17 00:00:00 2001 From: Alex Clarke Date: Mon, 25 Nov 2024 18:27:25 -0700 Subject: [PATCH] ci: Fetch all tags first before running Commitizen [skip ci] --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c8bd4c3..197d1b6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -53,6 +53,10 @@ jobs: git config user.name "github-actions[bot]" git config user.email "github-actions[bot]@users.noreply.github.com" + - name: Fetch all tags + run: | + git fetch origin --tags + - name: Bump version with Commitizen run: | cz bump --yes --increment ${{ github.event.inputs.bump_type }}