Skip to content

Commit

Permalink
[hibernate#1606] Fix upload of the documentation via gradle
Browse files Browse the repository at this point in the history
Calling `./gradlew uploadDocumentation` was failing
because the dependency to the task that downloads
hibernate.org locally was missing.
  • Loading branch information
DavideD committed Oct 3, 2024
1 parent 0d92060 commit 4047fe9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions release/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ def updateDocumentationTask = tasks.register( 'updateDocumentation' ) {
}

def stageDocChangesTask = tasks.register( 'stageDocChanges', Exec ) {
dependsOn updateDocumentationTask
workingDir project.layout.buildDirectory.dir( "docs-website" )
commandLine 'git', 'add', '-A', '.'
}
Expand Down

0 comments on commit 4047fe9

Please sign in to comment.