Skip to content

Commit

Permalink
remove "-docs" from html publish path (#67)
Browse files Browse the repository at this point in the history
remove "-docs" from html publish path to fix docs paths on s3 push

Authors:
  - Don Acosta (https://github.com/acostadon)

Approvers:
  - James Lamb (https://github.com/jameslamb)

URL: #67
  • Loading branch information
acostadon authored Dec 30, 2024
1 parent 21c1bc9 commit 0a5ff85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/build_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ pushd docs/cugraph-docs
# type of failure well.
python -c "import cugraph; print(f'Using cugraph: {cugraph}')"
sphinx-build -b dirhtml source _html
mkdir -p "${RAPIDS_DOCS_DIR}/cugraph-docs/html"
mv _html/* "${RAPIDS_DOCS_DIR}/cugraph-docs/html"
mkdir -p "${RAPIDS_DOCS_DIR}/cugraph/html"
mv _html/* "${RAPIDS_DOCS_DIR}/cugraph/html"
popd

RAPIDS_VERSION_NUMBER="${RAPIDS_VERSION_MAJOR_MINOR}" rapids-upload-docs

0 comments on commit 0a5ff85

Please sign in to comment.