Skip to content

Commit

Permalink
Bum GitHub run number on 2023.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sergej-koscejev committed Aug 6, 2024
1 parent 8c0293e commit 8fc6890
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ val platformVersion = "$major.$minor.+"
// build sequence being higher. In order for GitHub build to appear later, we bump the GitHub run number to be greater
// than the build number from TeamCity.
//
// We do it only on 2022.3 so that the hack can be eventually removed for later versions.
val githubRunNumberBump = if ("$major.$minor" == "2022.3") 1000 else 0
// We do it only on 2022.3 and 2023.2 so that the hack can be eventually removed for later versions.
val githubRunNumberBump = if ("$major.$minor" == "2022.3" || "$major.$minor" == "2023.2") 1000 else 0

if (ciBuild) {
val branch = GitBasedVersioning.getGitBranch()
Expand Down

0 comments on commit 8fc6890

Please sign in to comment.