We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd0214b commit a84a104Copy full SHA for a84a104
1 file changed
check-release.pl
@@ -70,8 +70,6 @@ ($$$)
70
# look for a suitable tag
71
my $tag = "$artifactId-$releaseVersion";
72
if (tagExists($tag)) { return $tag; }
73
- $tag = "v$releaseVersion";
74
- if (tagExists($tag)) { return $tag; }
75
if ($tag =~ /_$/) {
76
$tag =~ s/_$//;
77
@@ -80,6 +78,8 @@ ($$$)
80
78
$tag =~ s/^pom-//;
81
79
82
}
+ $tag = "v$releaseVersion";
+ if (tagExists($tag)) { return $tag; }
83
84
# no tag found; extract ref from the JAR
85
return extractRef($groupId, $artifactId, $releaseVersion);
0 commit comments