Skip to content

Commit

Permalink
Fix git commit for tag creation on the weekly deploy Jenkins job (#1803)
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigonull committed Sep 16, 2024
1 parent 6d694d2 commit c7083c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/jenkins/Jenkinsfile.weekly.deploy
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
Expand Down

0 comments on commit c7083c5

Please sign in to comment.