Skip to content

Commit

Permalink
add run number to version
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasFranke committed Oct 22, 2023
1 parent d3cbb58 commit 5776eba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

val minecraftVersion = "1.20"
val pluginVersion: String = "1.12.3" + if (System.getenv("runnumber") != null) "." + System.getenv("pluginversion") else ""
val pluginVersion: String = "1.12.3" + if (System.getenv("runnumber") != null) "." + System.getenv("runnumber") else ""

group = "org.example"
version = pluginVersion
Expand Down

0 comments on commit 5776eba

Please sign in to comment.