Skip to content

Commit

Permalink
Use environment version for gradle release
Browse files Browse the repository at this point in the history
  • Loading branch information
recke96 committed Mar 16, 2024
1 parent 85d28e9 commit 6313fb2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions desktop-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ plugins {
alias(libs.plugins.kotlin.compose)
}

version = "0.2.0"

kotlin {
jvmToolchain(21)
}
Expand Down Expand Up @@ -46,6 +44,7 @@ compose.desktop {
nativeDistributions {
targetFormats(TargetFormat.Deb, TargetFormat.Exe)
packageName = rootProject.name
version = System.getenv("RELEASE_VERSION") ?: "0.0.0"
description = "Tournament planner for HEMA tournaments of the club 'Fior della Spada'"
copyright = "© 2024 Jakob Ecker. All rights reserved."
licenseFile = rootProject.file("LICENCE")
Expand Down

0 comments on commit 6313fb2

Please sign in to comment.