From 4c76778371d558e3da810d020debf7b742d01ba6 Mon Sep 17 00:00:00 2001 From: mpavlov Date: Thu, 3 Oct 2024 20:36:06 +0300 Subject: [PATCH] test3 --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0ac2c8b..cb533ad 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -26,8 +26,8 @@ pipeline { steps { script { env.AskCerts = input message: 'Upload RootCA certificate and key', parameters: [base64File(name: 'rootca'), base64File(name: 'rootca_key')] - def rootca = AskCerts['rootca'] - sh 'echo ${rootca} | base64 -d > roles/rproxy/files/RootCA.crt' + env.RootCA = AskCerts['rootca'] + sh 'echo ${RootCA} | base64 -d > roles/rproxy/files/RootCA.crt' sh 'cat roles/rproxy/files/RootCA.crt' // def rootca_key = AskCerts['rootca_key']