1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-05-07 13:34:02 +02:00

Apply patch for the release

This commit is contained in:
Alex Plate 2025-01-10 09:51:28 +03:00
parent 7b183f0876
commit f4f0f7c3ed
No known key found for this signature in database
GPG Key ID: 0B97153C8FFEC09F
2 changed files with 4 additions and 20 deletions
.teamcity
_Self/buildTypes
patches/buildTypes

View File

@ -28,7 +28,10 @@ sealed class ReleasePlugin(private val releaseType: String) : IdeaVimBuildType({
name = "Publish $releaseType release"
description = "Build and publish IdeaVim plugin"
artifactRules = "build/distributions/*"
artifactRules = """
build/distributions/*
build/reports/*
""".trimIndent()
params {
param("env.ORG_GRADLE_PROJECT_ideaVersion", RELEASE)

View File

@ -1,19 +0,0 @@
package patches.buildTypes
import jetbrains.buildServer.configs.kotlin.v2019_2.*
import jetbrains.buildServer.configs.kotlin.v2019_2.ui.*
/*
This patch script was generated by TeamCity on settings change in UI.
To apply the patch, change the buildType with id = 'ReleaseMinor'
accordingly, and delete the patch script.
*/
changeBuildType(RelativeId("ReleaseMinor")) {
check(artifactRules == "build/distributions/*") {
"Unexpected option value: artifactRules = $artifactRules"
}
artifactRules = """
build/distributions/*
build/reports/*
""".trimIndent()
}