Skip to content

Commit

Permalink
Use environment to control the build qualifier
Browse files Browse the repository at this point in the history
  • Loading branch information
fwaibel committed Oct 29, 2023
1 parent 432dd4b commit 8a09b42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ext.javaProjects = [
allprojects {
apply plugin: 'base'
if(System.getenv('CBI_BUILD') == 'true') {
def buildQualifier = System.properties['ci.build.qualifier']
def buildQualifier = System.getenv('CBI_BUILD_QUALIFIER')
if(buildQualifier) {
version = version + '.' + buildQualifier
} else {
Expand Down

0 comments on commit 8a09b42

Please sign in to comment.