Skip to content

Commit

Permalink
NO-ISSUE: Fix Git tag creation in the weekly deploy Jenkins job execu…
Browse files Browse the repository at this point in the history
…tion (#2098)
  • Loading branch information
rodrigonull committed Sep 10, 2024
1 parent ac158a8 commit 13ac288
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .ci/jenkins/Jenkinsfile.weekly.deploy
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,13 @@ pipeline {
script {
projectVersion = getProjectVersion(false)
dir(getRepoName()) {
githubscm.setUserConfigFromCreds(getGitAuthorPushCredsId())
if (githubscm.isThereAnyChanges()) {
def commitMsg = "[${getBuildBranch()}] Update version to ${projectVersion}"
githubscm.setUserConfigFromCreds(getGitAuthorPushCredsId())
githubscm.commitChanges(commitMsg, { githubscm.findAndStageNotIgnoredFiles('pom.xml') })
} else {
println '[WARN] no changes to commit'
}
githubscm.tagRepository(projectVersion)
githubscm.pushRemoteTag('origin', projectVersion, getGitAuthorPushCredsId())
}
Expand Down

0 comments on commit 13ac288

Please sign in to comment.