Skip to content

Commit

Permalink
Fix release script (#2344)
Browse files Browse the repository at this point in the history
  • Loading branch information
yahavi committed Dec 4, 2023
1 parent 557fc74 commit 8b83bba
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 8b83bba

Please sign in to comment.