Skip to content

Commit

Permalink
patch(version): bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Im-Fran committed Sep 19, 2023
1 parent 594bc6c commit 77a4ae6
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 @@ -15,7 +15,7 @@ val env = project.rootProject.file(".env").let { file ->
if(file.exists()) file.readLines().filter { it.isNotBlank() && !it.startsWith("#") && it.split("=").size == 2 }.associate { it.split("=")[0] to it.split("=")[1] } else emptyMap()
}.toMutableMap().apply { putAll(System.getenv()) }

val projectVersion = env["VERSION"] ?: "0.2.2-SNAPSHOT"
val projectVersion = env["VERSION"] ?: "0.3.0-SNAPSHOT"

group = "xyz.theprogramsrc"
version = projectVersion
Expand Down

0 comments on commit 77a4ae6

Please sign in to comment.