Fix passing branch to publish.sh

This commit is contained in:
Christian Beikov 2024-06-14 18:48:39 +02:00 committed by Marco Belladelli
parent b546b0c82d
commit 7635eb562c
No known key found for this signature in database
GPG Key ID: DBD6E257ABE9EA3D
1 changed files with 1 additions and 3 deletions

View File

@ -161,9 +161,7 @@ pipeline {
sshagent(['ed25519.Hibernate-CI.github.com', 'hibernate.filemgmt.jboss.org', 'hibernate-ci.frs.sourceforge.net']) {
// performs documentation upload and Sonatype release
// push to github
withEnv(["BRANCH=${env.GIT_BRANCH}"]) {
sh ".release/scripts/publish.sh ${env.SCRIPT_OPTIONS} ${env.PROJECT} ${env.RELEASE_VERSION} ${env.DEVELOPMENT_VERSION}"
}
sh ".release/scripts/publish.sh ${env.SCRIPT_OPTIONS} ${env.PROJECT} ${env.RELEASE_VERSION} ${env.DEVELOPMENT_VERSION} ${env.GIT_BRANCH}"
}
}
}