Skip to content

Commit

Permalink
Fix changelog path in the githubRelease config (#5326)
Browse files Browse the repository at this point in the history
  • Loading branch information
cortinico committed Sep 22, 2022
1 parent 7eab480 commit f3152f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-logic/src/main/kotlin/releasing.gradle.kts
Expand Up @@ -26,7 +26,7 @@ project.afterEvaluate {
draft.set(true)
targetCommitish.set("main")
body {
var changelog = project.file("website/docs/introduction/changelog.md").readText()
var changelog = project.file("website/src/pages/changelog.md").readText()
val nextNonBetaVersion = project.version.toString()
val sectionStart = "#### $nextNonBetaVersion"
changelog = changelog.substring(changelog.indexOf(sectionStart))
Expand Down

0 comments on commit f3152f6

Please sign in to comment.