From cc342420cff07d857f5ada59faf93fc01177a9d4 Mon Sep 17 00:00:00 2001 From: Andrey Kononykhin Date: Fri, 1 Oct 2021 12:51:32 +0300 Subject: [PATCH] fixes release pipeline Signed-off-by: Andrey Kononykhin --- .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 e3c3348..9975c23 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,7 +39,7 @@ jobs: id: current_version run: | python -m pip install . --no-deps - out="$(pip show ${{ env.PKG_NAME }} | grep Version: | cut -d'' '' -f 2)" + out="$(pip show ${{ env.PKG_NAME }} | grep Version: | awk '{print $2}')" echo "$out" echo "::set-output name=current_version::$out" shell: bash