Skip to content

Commit 22cdf69

Browse files
authored
Fix another implicit task dep issue (#3541)
1 parent 7548e93 commit 22cdf69

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,13 @@ allprojects {
2929
}
3030
}
3131

32-
tasks.register<GenerateGithubChangeLog>("generateChangeLog") {
32+
val generateChangeLog = tasks.register<GenerateGithubChangeLog>("generateChangeLog") {
3333
changeLogFile.set(project.file("CHANGELOG.md"))
3434
}
3535

3636
tasks.createRelease.configure {
37+
mustRunAfter(generateChangeLog)
38+
3739
releaseVersion.set(providers.gradleProperty("toolkitVersion"))
3840
}
3941

0 commit comments

Comments
 (0)