Update build name format in Jenkinsfile to prefix version with 'v' for consistency
All checks were successful
farmcontrol/farmcontrol-ui/pipeline/head This commit looks good

This commit is contained in:
Tom Butcher 2026-06-21 04:10:58 +01:00
parent 242f67f47e
commit 8901cdbc98

2
Jenkinsfile vendored
View File

@ -95,7 +95,7 @@ def setBuildNameFromPackageVersion() {
returnStdout: true
).trim()
}
def buildName = "${version}-b${env.BUILD_NUMBER}"
def buildName = "v${version}-b${env.BUILD_NUMBER}"
currentBuild.displayName = buildName
echo "Build name set to: ${buildName}"
}