From 84d251126cc8f731acb6e37c67dbeee221c89c13 Mon Sep 17 00:00:00 2001 From: Roman Bredehoft Date: Tue, 3 Oct 2023 10:31:43 +0200 Subject: [PATCH] chore: fix prepare_release action for non-patch releases --- .github/workflows/prepare_release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/prepare_release.yaml b/.github/workflows/prepare_release.yaml index e758ac95a..8ad432452 100644 --- a/.github/workflows/prepare_release.yaml +++ b/.github/workflows/prepare_release.yaml @@ -70,7 +70,7 @@ jobs: run: | IS_PATCH="$(poetry run python ./script/make_utils/version_utils.py is_patch_release --version "$VERSION")" - if [[ "${IS_PATCH}" == "false" ]]; then + if [[ "${IS_PATCH}" == "true" ]]; then if [[ "${BRANCH_IS_RELEASE}" == "false" ]]; then echo "Patch release cannot be done: target branch is not a release branch"