Skip to content

Commit 125152e

Browse files
ci: Fix tag version check
1 parent 165fb91 commit 125152e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/cd-pypi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
shell: bash
8686
run: |
8787
VERSION_TAG="${{ github.event.release.tag_name }}"
88-
PACKAGE_VERSION="$(python3 ci-scripts/get_version.py)"
88+
PACKAGE_VERSION="v$(python3 ci-scripts/get_version.py)"
8989
echo "VERSION_TAG = $VERSION_TAG"
9090
echo "PACKAGE_VERSION = $PACKAGE_VERSION"
9191
if [ $VERSION_TAG == $PACKAGE_VERSION ]; then exit 0; else exit 1; fi

0 commit comments

Comments
 (0)