From 4322f755c90622ed9a8ad7b9f471cd86482de03f Mon Sep 17 00:00:00 2001 From: IgnatBeresnev Date: Fri, 10 Nov 2023 13:33:17 +0100 Subject: Fix developer docs being redirected to the SNAPSHOT version Fixes a mistake introduced in #3174 --- docs-developer/build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs-developer/build.gradle.kts b/docs-developer/build.gradle.kts index d611a097..b80cf5c9 100644 --- a/docs-developer/build.gradle.kts +++ b/docs-developer/build.gradle.kts @@ -6,10 +6,10 @@ plugins { id("ru.vyarus.mkdocs") version "2.4.0" } -if (!project.version.toString().endsWith("-SNAPSHOT")) { +if (project.version.toString().endsWith("-SNAPSHOT")) { // Do not generate the root index.html file with the redirect - // to a non-release version, otherwise GitHub pages based documentation - // will always lead to the non-stable documentation. + // to a snapshot version, otherwise GitHub Pages-based documentation + // will always lead to the non-yet-released documentation. // For more details, see https://github.com/Kotlin/dokka/issues/2869. // For configuration details, see https://xvik.github.io/gradle-mkdocs-plugin/3.0.0/examples/#simple-multi-version. mkdocs.publish.rootRedirect = false -- cgit