From 9063482ef62f54e39652baa744c374ea85cd8d80 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 28 Mar 2023 15:38:08 +0200 Subject: [PATCH] [8.33.x] [BXMSPROD-1983] double escape dollar sign (#2736) [BXMSPROD-1983] double escape dollar sign (#2735) Co-authored-by: Andrea Lamparelli --- .ci/jenkins/Jenkinsfile.prod.nightly | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/jenkins/Jenkinsfile.prod.nightly b/.ci/jenkins/Jenkinsfile.prod.nightly index a65c04b83fe..27ef07b370b 100644 --- a/.ci/jenkins/Jenkinsfile.prod.nightly +++ b/.ci/jenkins/Jenkinsfile.prod.nightly @@ -60,7 +60,7 @@ pipeline { withCredentials([string(credentialsId: "kie-ci1-token", variable: 'GITHUB_TOKEN')]) { def SETTINGS_XML_ID = '5d9884a1-178a-4d67-a3ac-9735d2df2cef' def buildBranch = getBuildBranch() - def definitionFile = "https://raw.githubusercontent.com/\${GROUP:kiegroup}/optaplanner/${getDefinitionFileBranch()}/.ci/nightly-build-config.yaml" + def definitionFile = "https://raw.githubusercontent.com/\\\${GROUP:kiegroup}/optaplanner/${getDefinitionFileBranch()}/.ci/nightly-build-config.yaml" configFileProvider([configFile(fileId: "${SETTINGS_XML_ID}", variable: 'PME_MAVEN_SETTINGS_XML')]) { sh "build-chain build branch --token=${GITHUB_TOKEN} -f ${definitionFile} -b ${buildBranch} -o bc -p kiegroup/optaplanner --fullProjectDependencyTree --skipParallelCheckout"