Skip to content

Commit 17bf2a0

Browse files
committed
Reduce storage space usage during documentation action execution
1 parent 6783fb3 commit 17bf2a0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/documentation.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ jobs:
2525
environment-file: docs/.docs.environment.yaml
2626
- name: Install dependencies
2727
run: |
28-
$CONDA/envs/PoseBench-Documentation/bin/pip install -e .
28+
$CONDA/envs/PoseBench-Documentation/bin/pip install --no-cache-dir -e .
29+
conda clean --all --yes
2930
- name: Sphinx build
3031
run: |
3132
rm -rf docs/build/ && $CONDA/envs/PoseBench-Documentation/bin/sphinx-build docs/source/ docs/build/

0 commit comments

Comments
 (0)