From 1893abd773ccd7d7c4251838ae3b0f92ad16f233 Mon Sep 17 00:00:00 2001 From: Alex Clarke Date: Mon, 25 Nov 2024 18:51:48 -0700 Subject: [PATCH] ci: Fix the GitHub release to use commitizen to fetch the new tag --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 52c10d7..e155f4c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -65,7 +65,7 @@ jobs: - name: Get the new version tag id: version run: | - NEW_TAG=$(git describe --tags --abbrev=0) + NEW_TAG=$(cz version --project) echo "New version: $NEW_TAG" echo "version=$NEW_TAG" >> $GITHUB_ENV