From be2c1a32cfcff85a14a307084e14f7f9bf44e68a Mon Sep 17 00:00:00 2001 From: ermisw Date: Tue, 28 Nov 2023 12:45:53 +0100 Subject: [PATCH] added KEPTN Bridge URL as env for passing to other job --- jenkinsfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/jenkinsfile b/jenkinsfile index a94d2df..9a8545a 100644 --- a/jenkinsfile +++ b/jenkinsfile @@ -39,8 +39,11 @@ pipeline { sh 'terraform init -backend-config="key=keptn-demo"' sh 'terraform apply -auto-approve' - - env.KEPTN_BRIDGE_URL = "asdsdsd"//terraform output -raw Keptn_Bridge_Url + + script { + env.KEPTN_BRIDGE_URL = "asdsdsd" + } + } }