From 826ea530a32e3f63e569f0db81ac3b6c9126a19a Mon Sep 17 00:00:00 2001 From: Mahdi Hosseinzadeh Date: Thu, 13 Jun 2024 19:44:10 +0330 Subject: [PATCH] Fix the bug with showing changelog --- build.gradle.kts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index 750cf9d..3d81a0d 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -53,6 +53,10 @@ val uiTest = task("uiTest") { } tasks.check { dependsOn(uiTest) } +tasks.processResources { + from(rootDir.toPath() / "CHANGELOG.md") +} + tasks.withType { useJUnitPlatform() // See https://github.com/JetBrains/compose-multiplatform/issues/3244