Skip to content

Commit

Permalink
correct post build doctree removal path (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
d33bs authored Sep 19, 2024
1 parent 157d5d2 commit cf90263
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
cd docs
poetry run sphinx-multiversion src build
# remove any doctrees dirs which aren't needed for publishing
find docs/build -type d -name '.doctrees' -exec rm -rf {} +
find ./build -type d -name '.doctrees' -exec rm -rf {} +
cp -r build/* ../pages/
- name: Add index redirector to latest docs
run: |
Expand Down

0 comments on commit cf90263

Please sign in to comment.