Skip to content

Commit 4047fe9

Browse files
committed
[#1606] Fix upload of the documentation via gradle
Calling `./gradlew uploadDocumentation` was failing because the dependency to the task that downloads hibernate.org locally was missing.
1 parent 0d92060 commit 4047fe9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

release/build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ def updateDocumentationTask = tasks.register( 'updateDocumentation' ) {
162162
}
163163

164164
def stageDocChangesTask = tasks.register( 'stageDocChanges', Exec ) {
165+
dependsOn updateDocumentationTask
165166
workingDir project.layout.buildDirectory.dir( "docs-website" )
166167
commandLine 'git', 'add', '-A', '.'
167168
}

0 commit comments

Comments
 (0)