Skip to content

Commit

Permalink
Fix wrong site name
Browse files Browse the repository at this point in the history
  • Loading branch information
miscco committed May 29, 2024
1 parent 888f649 commit ffaf374
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ jobs:
# Copy all docs to the right folder
- name: Move docs to right oflder
run: |
mkdir ./site
cp -rf ./docs/_build/docs/cccl/latest/* .site
mkdir ./site/cub
cp -rf ./docs/_build/docs/cub/latest/* .site
mkdir ./site/libcudacxx
cp -rf ./docs/_build/docs/libcudacxx/latest/* .site
mkdir ./site/thrust
cp -rf ./docs/_build/docs/thrust/latest/* .site
mkdir _site
cp -rf ./docs/_build/docs/cccl/latest/* _site
mkdir _site/cub
cp -rf ./docs/_build/docs/cub/latest/* _site
mkdir _site/libcudacxx
cp -rf ./docs/_build/docs/libcudacxx/latest/* _site
mkdir _site/thrust
cp -rf ./docs/_build/docs/thrust/latest/* _site
# Upload build artifacts
- name: Upload artifact
Expand Down

0 comments on commit ffaf374

Please sign in to comment.