Skip to content

Commit 8a89b1b

Browse files
committed
debug
1 parent b50cca4 commit 8a89b1b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/cd-pypi-binwheel.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,9 @@ jobs:
109109
result = subprocess.run(["python", "setup.py", "--version"], capture_output=True, text=True, check=True)
110110
version = result.stdout.strip()
111111
release = os.environ.get("GITHUB_REF_NAME")
112-
testpypi = os.environ.get("INPUT_TESTPYPI", "").lower() == "true"
112+
testpypi = os.environ.get("INPUT_TESTPYPI").lower() == "true"
113+
114+
print(version, release, testpypi)
113115
114116
if not testpypi and release != version:
115117
raise SystemExit(f"Version mismatch: release '{release}' != setup.py version '{version}'")

0 commit comments

Comments
 (0)