File tree Expand file tree Collapse file tree 3 files changed +2
-14
lines changed
mkdocs-customizations/overrides Expand file tree Collapse file tree 3 files changed +2
-14
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ python {
2020
2121mkdocs {
2222 extras = mapOf (
23- " version" to " ${project.version} " ,
2423 " project-version" to " ${project.version} " ,
2524 " project-groupId" to " ${project.group} " ,
2625 " project-artifactId" to " ${rootProject.name} " ,
@@ -37,9 +36,9 @@ mkdocs {
3736 // This is a hack because versionAliases is created final as an array without a setter
3837 // So it isn't friendly to the Gradle Kotlin DSL
3938 org.codehaus.groovy.runtime.InvokerHelper .setProperty(this , " versionAliases" , arrayOf(alias))
40- docPath = " ${ project.version} "
39+ docPath = project.version.toString()
4140 rootRedirect = true
42- rootRedirectTo = if (System .getenv(" IS_PR_BUILD" )?.toBoolean() == true ) alias else " current"
41+ // rootRedirectTo = if (System.getenv("IS_PR_BUILD")?.toBoolean() == true) alias else "current"
4342 generateVersionsFile = true
4443 existingVersionsFile = versionsFile
4544 }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -106,9 +106,6 @@ extra_css:
106106extra :
107107 version :
108108 provider : mike
109- default :
110- - current
111- - dev
112109 alias : true
113110 social :
114111 - icon : fontawesome/brands/github
You can’t perform that action at this time.
0 commit comments