Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions github_release_notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

* See the [website](https://hibernate.org/validator/releases/{{releaseVersionFamily}}) for requirements and compatibilities.
* See the [What's New](https://docs.hibernate.org/validator/{{releaseVersionFamily}}/whats-new/en-US/html_single/) guide for details about new features and capabilities.
4 changes: 3 additions & 1 deletion jenkins/release/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,12 @@ pipeline {
sshagent(['ed25519.Hibernate-CI.github.com', 'jenkins.in.relation.to', 'hibernate-ci.frs.sourceforge.net']) {
sh 'cat $HOME/.ssh/config'
dir('.release/scripts') {
sh 'git clone --branch test/github-releases https://github.com/hibernate/hibernate-release-scripts.git .'
sh 'git clone https://github.com/hibernate/hibernate-release-scripts.git .'
}
def ghReleaseNote = sh(script: 'realpath -e github_release_notes.md 2>/dev/null', returnStdout: true).trim()
sh """
bash -xe .release/scripts/release.sh -j ${params.RELEASE_DRY_RUN ? '-d' : ''} \
${ghReleaseNote != '' ? '--notes=' + ghReleaseNote : ''} \
validator ${releaseVersion.toString()} ${developmentVersion.toString()}
"""
}
Expand Down