From c7083c56f730c9102c53de4bed9c19950b5b8ac0 Mon Sep 17 00:00:00 2001 From: Rodrigo Antunes Date: Mon, 16 Sep 2024 08:44:22 -0300 Subject: [PATCH] Fix git commit for tag creation on the weekly deploy Jenkins job (#1803) --- .ci/jenkins/Jenkinsfile.weekly.deploy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/jenkins/Jenkinsfile.weekly.deploy b/.ci/jenkins/Jenkinsfile.weekly.deploy index 5ae76b2bb..41b0e21b3 100644 --- a/.ci/jenkins/Jenkinsfile.weekly.deploy +++ b/.ci/jenkins/Jenkinsfile.weekly.deploy @@ -131,7 +131,7 @@ pipeline { if (githubscm.isThereAnyChanges()) { def commitMsg = "[${getBuildBranch()}] Update version to ${projectVersion}" githubscm.setUserConfigFromCreds(getGitAuthorPushCredsId()) - githubscm.commitChanges(commitMsg, { githubscm.findAndStageNotIgnoredFiles('pom.xml') }) + githubscm.commitChanges(commitMsg) } else { println '[WARN] no changes to commit' }