Skip to content

Commit

Permalink
Make sure copying happens from correct working directories (#1296)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivirshup authored Oct 4, 2024
1 parent a1aff8a commit 1ad5786
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/docsite-build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,13 @@ jobs:
run: |
cd docs/
make clean && make html
cp -r _build/html/* ../docsite/.
- name: Copy everything to docsite directory
run: |
# Python docs
cp -r docs/_build/html/* docsite/.
# R docs
mkdir -p docsite/r
cp -r api/r/cellxgene.census/docs/* docsite/r/.
Expand Down

0 comments on commit 1ad5786

Please sign in to comment.