From 8b83bbaed6dea5b794e8564be018b73204ca21e2 Mon Sep 17 00:00:00 2001 From: Yahav Itzhak Date: Mon, 4 Dec 2023 17:17:42 +0200 Subject: [PATCH] Fix release script (#2344) --- Jenkinsfile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4dd0944af..825895a0d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -46,7 +46,15 @@ node("docker") { } } - state('synchronize branches') { + stage('Configure git') { + sh """#!/bin/bash + git config --global user.email "eco-system@jfrog.com" + git config --global user.name "IL-Automation" + git config --global push.default simple + """ + } + + stage('synchronize branches') { if ("$EXECUTION_MODE".toString().equals("Build CLI")) { masterBranch = 'v2' devBranch = 'dev'