From: Fred Morcos Date: Thu, 2 Feb 2023 18:51:39 +0000 (+0100) Subject: Fix GH CI docs build X-Git-Tag: dnsdist-1.8.0-rc1~55^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=13aaaaaf64a8f355b57259f09b4bff56f3aca1e3;p=thirdparty%2Fpdns.git Fix GH CI docs build --- diff --git a/tasks.py b/tasks.py index 84ba5c58c9..554318ec73 100644 --- a/tasks.py +++ b/tasks.py @@ -297,7 +297,7 @@ def ci_docs_build_pdf(c): @task def ci_docs_upload_master(c, docs_host, pdf, username, product, directory=""): - c.run(f"rsync -crv --delete --no-p --chmod=g=rwX --exclude '*~' ./docs/_build/html-docs/ {username}@{docs_host}:{directory}") + c.run(f"rsync -crv --delete --no-p --chmod=g=rwX --exclude '*~' ./docs/_build/{product}-html-docs/ {username}@{docs_host}:{directory}") c.run(f"rsync -crv --no-p --chmod=g=rwX --exclude '*~' ./docs/_build/{product}-html-docs.tar.bz2 {username}@{docs_host}:{directory}/html-docs.tar.bz2") c.run(f"rsync -crv --no-p --chmod=g=rwX --exclude '*~' ./docs/_build/latex/{pdf} {username}@{docs_host}:{directory}")