From e5005425f78293549fdfcfe604c30114c47669e4 Mon Sep 17 00:00:00 2001 From: MrHua269 Date: Sat, 8 Mar 2025 20:11:22 +0800 Subject: [PATCH] [ci skip] Use --global flag to configure git --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3caa84e..afe84a1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,8 +5,8 @@ pipeline { stage('Configure git') { steps { script { - sh 'git config user.name "luminolmc"' - sh 'git config user.email "luminolmc@noreply.github.com"' + sh 'git config --global user.name "luminolmc"' + sh 'git config --global user.email "luminolmc@noreply.github.com"' } } }