Skip to content

Commit

Permalink
Allow changing versionName via project property for CI releases (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
minkuan88 authored Apr 1, 2024
1 parent 90ef85b commit e874d04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion constants.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
ext {
groupId = "com.grab.grazel"
versionName = "0.4.1-alpha.24"
versionName = project.hasProperty("versionName") ? versionName : "0.4.1-alpha.25"

website = "https://grab.github.io/Grazel/"
}

0 comments on commit e874d04

Please sign in to comment.