Use chart version for tag name

This commit is contained in:
Olu Shiyanbade 2022-08-25 19:52:34 +01:00
parent 694a919144
commit 662f32ab62

View File

@ -71,8 +71,8 @@ dockerizedBuildPipeline(
},
postDeploy: {
// Create tags
String tagName = "${version}"
runSafely "git tag -a ${tagName} -m 'Release Update: ${version}'"
String tagName = "${chartVersion}"
runSafely "git tag -a ${tagName} -m 'Release Update: ${chartVersion}'"
sshagent(credentials: [sonatypeZionCredentialsId()]) {
runSafely "git push origin ${tagName}"
}