We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06a01f9 commit 191966aCopy full SHA for 191966a
.github/workflows/publish.yml
@@ -42,7 +42,7 @@ jobs:
42
git_version=$(git describe)
43
pyproject_version=$(python -c "import tomllib; print(tomllib.load(open('pyproject.toml', 'rb'))['project']['version'])")
44
45
- if [ "$git_verson" != "$pyproject_version" ]; then
+ if [ "$git_version" != "$pyproject_version" ]; then
46
echo "The version specified in pyproject.toml ($pyproject_version) doesn't match the git version ($git_verson)"
47
echo "You most likely forgot to update pyproject.toml when publishing the release tag"
48
echo "You can fix this by updating the pyproject version and overwriting the git tag"
0 commit comments