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 a6b718d commit eed4d88Copy full SHA for eed4d88
.github/workflows/update_changelog.yml
@@ -59,7 +59,7 @@ jobs:
59
- name: Run Gradle updateChangelog
60
id: updateChangelog
61
run: |
62
- ./gradlew updateChangelog -PreleaseDate=$(date +'%Y-%m-%d')
+ ./gradlew updateChangelog -PreleaseDate=$(date +'%Y-%m-%d') --no-configuration-cache
63
env:
64
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
65
build.gradle.kts
@@ -278,7 +278,7 @@ tasks.register("updateChangelog") {
278
.trim()
279
}
280
281
- val tagsOutput = runCommand("git tag --sort=-v:creatordate")
+ val tagsOutput = runCommand("git tag --sort=-creatordate")
282
val semverRegex = Regex("^\\d+\\.\\d+\\.\\d+$")
283
val tags = tagsOutput.lines().filter { semverRegex.matches(it) }
284
if (tags.isEmpty()) {
0 commit comments