From 064fb950cceb5180d5214c501ff89e326f229807 Mon Sep 17 00:00:00 2001 From: Platon Floria Date: Mon, 6 May 2024 16:14:37 +0200 Subject: [PATCH] fix: produce a correct release tag --- .github/workflows/release-and-pypi-publish.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release-and-pypi-publish.yml b/.github/workflows/release-and-pypi-publish.yml index 2893f5056..057dd4798 100644 --- a/.github/workflows/release-and-pypi-publish.yml +++ b/.github/workflows/release-and-pypi-publish.yml @@ -83,6 +83,7 @@ jobs: id: bump_version_and_set_output run: | poetry version patch + echo new_version=$(poetry version | cut -d' ' -f2) >> $GITHUB_OUTPUT git checkout main git config --local user.email "action@github.com" git config --local user.name "GitHub Action"