Skip to content

Commit

Permalink
fixed version when publishing from a workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Dec 13, 2024
1 parent b00ee5f commit 100f7f7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ subprojects {
}

if (isCI) {
version = version + "-" + gitHash()
def isRELEASE = System.getenv("GITHUB_RELEASE")
if (!isRELEASE){
version = version + "-" + gitHash()
}
println("In CI mode")
}
}

0 comments on commit 100f7f7

Please sign in to comment.