From 49802606e5ffa7b7136e8c2513323cb8fb719da8 Mon Sep 17 00:00:00 2001 From: Rodrigo Antunes Date: Fri, 13 Sep 2024 09:12:24 -0300 Subject: [PATCH] Fix git commit for tag creation on the weekly deploy Jenkins job --- .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' }