Skip to content

Commit d8c69d5

Browse files
Fixed scripting logic
1 parent b47d1c2 commit d8c69d5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build-docs.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,9 @@ jobs:
5454
source /opt/intel/oneapi/setvars.sh
5555
python setup.py develop
5656
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
57+
sphinx-build -M html docs/source docs/build
58+
mkdir -p ~/rendered_docs
59+
cp -r docs/build/html/* ~/rendered_docs/
5960
git clean -dfx
6061
- name: Save built docs as an artifact
6162
if: ${{ github.event.pull_request && github.event.action != 'closed'}}

0 commit comments

Comments
 (0)