ci: use GIT_REF for building docker image when set (#1218)

This commit is contained in:
Siddarth Kumar 2024-09-11 10:48:13 +05:30 committed by GitHub
parent bf2b7dce1a
commit 1a96cd2271
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 2 deletions

View File

@ -43,9 +43,10 @@ pipeline {
stages {
stage('Build') {
steps { script {
def commitOrRef = params.GIT_REF ? params.GIT_REF.take(8) : GIT_COMMIT.take(8)
image = docker.build(
"${params.IMAGE_NAME}:${params.IMAGE_TAG ?: GIT_COMMIT.take(8)}",
"--build-arg='GIT_COMMIT=${GIT_COMMIT.take(8)}' ."
"${params.IMAGE_NAME}:${params.IMAGE_TAG ?: commitOrRef}",
"--build-arg='GIT_COMMIT=${commitOrRef}' ."
)
} }
}