We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4f3ac3 commit 14f3801Copy full SHA for 14f3801
.github/workflows/wheel-releaser.yml
@@ -40,7 +40,14 @@ jobs:
40
if res:
41
print("Version number OK ('{version}')")
42
else:
43
- print(f"::error::Invalid version number '{version}' - (see https://semver.org)")
+ message = [
44
+ f"::error::INVALID RELEASE VERSION NUMBER '{version}'",
45
+ "Version must comply to Semantic Versioning standard:",
46
+ "\n\tmajor.minor.patch[-pre]\n",
47
+ "See https://semver.org for more information",
48
+ "or leave the field blank for default value\n"
49
+ ]
50
+ print("\n".join(message))
51
sys.exit(1)
52
53
call-build-wheels:
0 commit comments