Skip to content

Commit

Permalink
Fix version check.
Browse files Browse the repository at this point in the history
  • Loading branch information
Liraim committed Jul 22, 2024
1 parent 5c576aa commit b5d6a5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
env:
PYTHONPATH: ./src
run: |-
VERSION_TO_RELEASE=v$(python -c "from evidently import __version__; print(__version__)")
VERSION_TO_RELEASE=v$(python -c "from tracely import __version__; print(__version__)")
if [ "${{ github.ref_name }}" != "$VERSION_TO_RELEASE" ]; then
echo "Release triggered for tag ${{ github.ref_name }} but version.py contains $VERSION_TO_RELEASE"
exit 1
Expand Down

0 comments on commit b5d6a5e

Please sign in to comment.