From f3152f670c5fbbae5c2b82820c3de215789c29ec Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Thu, 22 Sep 2022 07:12:10 +0100 Subject: [PATCH] Fix changelog path in the githubRelease config (#5326) --- build-logic/src/main/kotlin/releasing.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-logic/src/main/kotlin/releasing.gradle.kts b/build-logic/src/main/kotlin/releasing.gradle.kts index d7549002fe4..46a92d5b390 100644 --- a/build-logic/src/main/kotlin/releasing.gradle.kts +++ b/build-logic/src/main/kotlin/releasing.gradle.kts @@ -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))