From 9f5ef497593fb0dd5c8910d5524245dee389c979 Mon Sep 17 00:00:00 2001 From: Prudhvi Godithi Date: Thu, 1 Feb 2024 16:23:56 -0800 Subject: [PATCH] Fix Jenkinsfile bug (#715) ### Description _Describe what this change achieves._ ### Issues Resolved _List any issues this PR will resolve, e.g. Closes [...]._ By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license. For more information on following Developer Certificate of Origin and signing off your commits, please check [here](https://github.com/opensearch-project/OpenSearch/blob/main/CONTRIBUTING.md#developer-certificate-of-origin). Signed-off-by: Prudhvi Godithi --- jenkins/release.jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/release.jenkinsfile b/jenkins/release.jenkinsfile index a4aaca61..ab7b3a0e 100644 --- a/jenkins/release.jenkinsfile +++ b/jenkins/release.jenkinsfile @@ -116,7 +116,7 @@ pipeline { dockerPromotion: { build job: 'docker-promotion', parameters: [ - string(name: 'SOURCE_IMAGES', value: '${OPERATOR_PRODUCT}:${OPERATOR_VERSION}'), + string(name: 'SOURCE_IMAGES', value: "${OPERATOR_PRODUCT}:${OPERATOR_VERSION}"), string(name: 'RELEASE_VERSION', value: "${OPERATOR_VERSION}"), booleanParam(name: 'DOCKER_HUB_PROMOTE', value: true), booleanParam(name: 'ECR_PROMOTE', value: true),