[workflows] Fix version-check.yml to work with the new minor release bump

This commit is contained in:
Tom Stellard
2024-01-25 12:24:50 -08:00
parent e99edf6bcb
commit d5e69147b9

View File

@@ -16,7 +16,7 @@ def get_version_from_tag(tag):
m = re.match("llvmorg-([0-9]+)-init", tag)
if m:
return (m.group(1), "0", "0")
return (m.group(1), "1", "0")
raise Exception(f"error: Tag is not valid: {tag}")