Skip to content

Commit cc34242

Browse files
committed
fixes release pipeline
Signed-off-by: Andrey Kononykhin <andkononykhin@gmail.com>
1 parent edc7271 commit cc34242

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
id: current_version
4040
run: |
4141
python -m pip install . --no-deps
42-
out="$(pip show ${{ env.PKG_NAME }} | grep Version: | cut -d'' '' -f 2)"
42+
out="$(pip show ${{ env.PKG_NAME }} | grep Version: | awk '{print $2}')"
4343
echo "$out"
4444
echo "::set-output name=current_version::$out"
4545
shell: bash

0 commit comments

Comments
 (0)