Skip to content

Commit 9bbe84d

Browse files
committed
Fix PyPI publish action
1 parent 1e75e2b commit 9bbe84d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/pypi-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
set -ex
1717
version=$(cat trainer/VERSION)
1818
tag="${GITHUB_REF/refs\/tags\/}"
19-
if [[ "v$version" != "$tag" ]]; then
19+
if [[ "$version" != "$tag" ]]; then
2020
exit 1
2121
fi
2222
- uses: actions/setup-python@v2

0 commit comments

Comments
 (0)