File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -287,16 +287,16 @@ html {
287
287
288
288
task packageHtml (type : Tar , dependsOn : [html, sitemap]) {
289
289
description ' Package HTML for distribution, including sitemap.'
290
- archiveBaseName. set( docsArtifactsName)
291
- archiveExtension. set( ' tar.gz' )
292
- archiveVersion. set( versions. gdsManual. toString())
290
+ archiveBaseName = docsArtifactsName
291
+ archiveExtension = ' tar.gz'
292
+ archiveVersion = versions. gdsManual
293
293
compression = Compression . GZIP
294
294
from { html }
295
295
from { sitemap }
296
296
// The 'into' path will end up being the URL scheme for the HTML pages on the website.
297
297
// It must follow Docs team's layout of `(neo4j.com/docs/)$publication/$version`
298
- into " graph-data-science/$archiveVersion "
299
- destinationDirectory. set( file(" $distributionDir /documentation" ) )
298
+ into " graph-data-science/${ archiveVersion.get() } "
299
+ destinationDirectory = file(" $distributionDir /documentation" )
300
300
}
301
301
302
302
task pdf {
You can’t perform that action at this time.
0 commit comments