We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9209150 commit 341d845Copy full SHA for 341d845
.github/workflows/publish.yml
@@ -51,15 +51,15 @@ jobs:
51
tag = ref[len(prefix):]
52
53
if tag != ver:
54
- print(f"❌ Tag ({tag}) != setup.py ({ver})", file=sys.stderr)
+ print(f"Tag ({tag}) != setup.py ({ver})", file=sys.stderr)
55
sys.exit(1)
56
57
# Expose outputs
58
with open(os.environ["GITHUB_OUTPUT"], "a") as fh:
59
fh.write(f"tag={tag}\n")
60
fh.write(f"file_ver={ver}\n")
61
62
- print(f"✅ Version OK: tag={tag} matches setup.py={ver}")
+ print(f"Version OK: tag={tag} matches setup.py={ver}")
63
64
- name: Build wheels
65
run: python -m cibuildwheel --output-dir dist
0 commit comments