Skip to content

Commit

Permalink
Fix Git tag created in the weekly deploy Jenkins Job execution
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigonull committed Sep 9, 2024
1 parent a0812e4 commit 7a33070
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 7a33070

Please sign in to comment.