From 984996dbb45c5c93ed058adb885eee363c37f94e Mon Sep 17 00:00:00 2001 From: Francia Csaba Date: Thu, 18 Jan 2024 13:36:50 +0100 Subject: [PATCH] Echo some environment variables for testing --- Jenkinsfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index cef0189..b0b3e08 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,6 +14,12 @@ pipeline { DEPLOY_SECRET = credentials('AMARILLO-JENKINS-DEPLOY-SECRET') } stages { + stage('Echo environment variables'){ + echo "BRANCH_NAME: ${BRANCH_NAME}" + echo "JOB_NAME: ${JOB_NAME}" + echo "BRANCH_IS_PRIMARY ${BRANCH_IS_PRIMARY}" + echo "TAG_NAME: ${TAG_NAME}" + } stage('Build docker image') { steps { echo 'Building image'