We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba0e4c2 commit 911a8b5Copy full SHA for 911a8b5
2 files changed
brewkit/github.ts
@@ -87,7 +87,7 @@ export function std_version_convert(
87
// common to put the project name or something like it as the prefix
88
parsable_tag = tag.replace(/^[a-zA-Z]+-/, "");
89
}
90
- const version = semver.parse(parsable_tag);
+ const version = semver.parse(parsable_tag) || semver.parse(name);
91
if (version) {
92
return { version, tag };
93
0 commit comments