We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6118f74 commit 555b6f9Copy full SHA for 555b6f9
build.gradle.kts
@@ -290,7 +290,7 @@ tasks.register("updateChangelog") {
290
}
291
292
val tagsOutput = runCommand("git tag --sort=-v:refname")
293
- val semverRegex = Regex("^v\\d+\\.\\d+\\.\\d+$")
+ val semverRegex = Regex("^\\d+\\.\\d+\\.\\d+$")
294
val tags = tagsOutput.lines().filter { semverRegex.matches(it) }
295
if (tags.isEmpty()) {
296
throw GradleException("Not Found Release Tag")
0 commit comments