-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make sure needed doc dependencies are installed
- Loading branch information
1 parent
1917ad8
commit 2348853
Showing
1 changed file
with
3 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,7 +54,8 @@ jobs: | |
if: ${{ !github.event.pull_request || github.event.action != 'closed' }} | ||
shell: bash -l {0} | ||
run: | | ||
pip install numpy cython setuptools scikit-build cmake sphinx"<7.2" sphinx_rtd_theme pydot graphviz sphinxcontrib-programoutput sphinxcontrib-googleanalytics | ||
pip install numpy cython setuptools scikit-build cmake sphinx"<7.2" pydot graphviz furo \ | ||
sphinxcontrib-programoutput sphinxcontrib-googleanalytics sphinx-design sphinxcontrib-jsmath | ||
- name: Checkout repo | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -80,6 +81,7 @@ jobs: | |
cmake --build . --target Sphinx || exit 1 | ||
mv ../cmake-install/docs/docs ~/docs | ||
git clean -dfx | ||
git reset --hard @{u} | ||
- name: Publish docs | ||
if: ${{ github.event.pull_request && !github.event.pull_request.head.repo.fork && github.ref == 'refs/heads/master' && github.event.action != 'closed' }} | ||
shell: bash -l {0} | ||
|