Skip to content

Commit

Permalink
chore(search); remove temporary index stage
Browse files Browse the repository at this point in the history
  • Loading branch information
zoobestik committed Nov 20, 2024
1 parent 57dc4bd commit 1c6f38e
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ object KotlinxCoroutinesBuildSearchIndex : TemplateSearchIndex({
description = "Build search index for Kotlinx Coroutines"

params {
param("env.ALGOLIA_INDEX_NAME", "$KOTLINX_COROUTINES_ID-stage")
param("env.ALGOLIA_INDEX_NAME", "$KOTLINX_COROUTINES_ID")
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ object KotlinxCoroutinesPrepareDokkaTemplates : BuildType({
templates(PrepareDokkaTemplate)

params {
param("env.ALGOLIA_INDEX_NAME", "$KOTLINX_COROUTINES_ID-stage")
param("env.ALGOLIA_INDEX_NAME", "$KOTLINX_COROUTINES_ID")
}
})
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ object KotlinxDatetimeBuildSearchIndex : TemplateSearchIndex({
description = "Build search index for Kotlinx Datetime"

params {
param("env.ALGOLIA_INDEX_NAME", "$KOTLINX_DATETIME_ID-stage")
param("env.ALGOLIA_INDEX_NAME", "$KOTLINX_DATETIME_ID")
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ object KotlinxDatetimePrepareDokkaTemplates : BuildType({
templates(PrepareDokkaTemplate)

params {
param("env.ALGOLIA_INDEX_NAME", "$KOTLINX_DATETIME_ID-stage")
param("env.ALGOLIA_INDEX_NAME", "$KOTLINX_DATETIME_ID")
}
})
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ object KotlinxIOBuildSearchIndex : TemplateSearchIndex({
description = "Build search index for Kotlinx IO"

params {
param("env.ALGOLIA_INDEX_NAME", "$KOTLINX_IO_ID-stage")
param("env.ALGOLIA_INDEX_NAME", "$KOTLINX_IO_ID")
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ object KotlinxIOPrepareDokkaTemplates : BuildType({
templates(PrepareDokkaTemplate)

params {
param("env.ALGOLIA_INDEX_NAME", "$KOTLINX_IO_ID-stage")
param("env.ALGOLIA_INDEX_NAME", "$KOTLINX_IO_ID")
}
})
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ object KotlinxMetadataJvmBuildSearchIndex : TemplateSearchIndex({
description = "Build search index for Kotlinx Metadata JVM"

params {
param("env.ALGOLIA_INDEX_NAME", "$KOTLINX_METADATA_ID-stage")
param("env.ALGOLIA_INDEX_NAME", "$KOTLINX_METADATA_ID")
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ object KotlinxMetadataJvmPrepareDokkaTemplates : BuildType({
templates(PrepareDokkaTemplate)

params {
param("env.ALGOLIA_INDEX_NAME", "$KOTLINX_METADATA_ID-stage")
param("env.ALGOLIA_INDEX_NAME", "$KOTLINX_METADATA_ID")
}
})
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ object KotlinxSerializationBuildSearchIndex : TemplateSearchIndex({
description = "Build search index for Kotlinx Serialization"

params {
param("env.ALGOLIA_INDEX_NAME", "$KOTLINX_SERIALIZATION_ID-stage")
param("env.ALGOLIA_INDEX_NAME", "$KOTLINX_SERIALIZATION_ID")
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ object KotlinxSerializationPrepareDokkaTemplates : BuildType({
templates(PrepareDokkaTemplate)

params {
param("env.ALGOLIA_INDEX_NAME", "$KOTLINX_SERIALIZATION_ID-stage")
param("env.ALGOLIA_INDEX_NAME", "$KOTLINX_SERIALIZATION_ID")
}
})

0 comments on commit 1c6f38e

Please sign in to comment.