Skip to content

Commit 191966a

Browse files
committed
Fix publish workflow
1 parent 06a01f9 commit 191966a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
git_version=$(git describe)
4343
pyproject_version=$(python -c "import tomllib; print(tomllib.load(open('pyproject.toml', 'rb'))['project']['version'])")
4444
45-
if [ "$git_verson" != "$pyproject_version" ]; then
45+
if [ "$git_version" != "$pyproject_version" ]; then
4646
echo "The version specified in pyproject.toml ($pyproject_version) doesn't match the git version ($git_verson)"
4747
echo "You most likely forgot to update pyproject.toml when publishing the release tag"
4848
echo "You can fix this by updating the pyproject version and overwriting the git tag"

0 commit comments

Comments
 (0)