Skip to content

Commit

Permalink
Fixed scripting logic
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksandr-pavlyk committed Feb 20, 2024
1 parent b47d1c2 commit d8c69d5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,9 @@ jobs:
source /opt/intel/oneapi/setvars.sh
python setup.py develop
python -c "import mkl_random; print(mkl_random.__version__)" || exit 1
sphinx-build -m html docs/source docs/build
mv docs/build/html ~/rendered_docs
sphinx-build -M html docs/source docs/build
mkdir -p ~/rendered_docs
cp -r docs/build/html/* ~/rendered_docs/
git clean -dfx
- name: Save built docs as an artifact
if: ${{ github.event.pull_request && github.event.action != 'closed'}}
Expand Down

0 comments on commit d8c69d5

Please sign in to comment.