Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideD committed Sep 9, 2024
1 parent 587183d commit 80a9b92
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions release/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ext {
// -PdocPublishRepoUri="[email protected]:DavideD/hibernate.org.git" \
// -PdocPublishBranch="staging"
if ( !project.hasProperty('docPublishRepoUri') ) {
docPublishRepoUri = '[email protected]:hibernate/hibernate.org.git'
docPublishRepoUri = '[email protected]:DavideD/hibernate.org.git'
}
if ( !project.hasProperty('docPublishBranch') ) {
docPublishBranch = 'staging'
Expand Down Expand Up @@ -199,13 +199,12 @@ def changeToReleaseVersionTask = tasks.register( 'changeToReleaseVersion' ) {

def gitPreparationForReleaseTask = tasks.register( 'gitPreparationForRelease' ) {
dependsOn releaseChecksTask
dependsOn changeLogFileTask
dependsOn changeToReleaseVersionTask

doLast {
logger.lifecycle( "Performing pre-steps Git commit : `${project.releaseVersion}`" )
executeGitCommand( 'add', '.' )
executeGitCommand( 'commit', '-m', "Pre-steps for release : `${project.ormVersion.fullName}`" )
executeGitCommand( 'commit', '-m', "Pre-steps for release : `${project.releaseVersion}`" )
}
}

Expand Down

0 comments on commit 80a9b92

Please sign in to comment.