Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideD committed Sep 16, 2024
1 parent bf580b3 commit b00de18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions release/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def gitPreparationForReleaseTask = tasks.register( 'gitPreparationForRelease' )
doLast {
logger.lifecycle( "Performing pre-steps Git commit : `${project.releaseVersion}`" )
executeGitCommand( 'add', '.' )
executeGitCommand( 'commit', '-m', "Pre-steps for release : `${project.releaseVersion}`" )
executeGitCommand( 'commit', '-m', "Update project version to : `${project.releaseVersion}`" )
}
}

Expand All @@ -223,7 +223,7 @@ def releasePreparePostGitTask = tasks.register( 'gitTasksAfterRelease' ) {

logger.lifecycle( "Performing post-steps Git commit : `${project.releaseVersion}`" )
executeGitCommand( 'add', '.' )
executeGitCommand( 'commit', '-m', "Post-steps for release : `${project.projectVersion}`" )
executeGitCommand( 'commit', '-m', "Update project version to : `${project.developmentVersion}`" )
}
}

Expand Down

0 comments on commit b00de18

Please sign in to comment.