We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b47d1c2 commit d8c69d5Copy full SHA for d8c69d5
1 file changed
.github/workflows/build-docs.yml
@@ -54,8 +54,9 @@ jobs:
54
source /opt/intel/oneapi/setvars.sh
55
python setup.py develop
56
python -c "import mkl_random; print(mkl_random.__version__)" || exit 1
57
- sphinx-build -m html docs/source docs/build
58
- mv docs/build/html ~/rendered_docs
+ sphinx-build -M html docs/source docs/build
+ mkdir -p ~/rendered_docs
59
+ cp -r docs/build/html/* ~/rendered_docs/
60
git clean -dfx
61
- name: Save built docs as an artifact
62
if: ${{ github.event.pull_request && github.event.action != 'closed'}}
0 commit comments