Numpy 2 #128
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
name: Documentation | |
on: | |
push: | |
branches: [master] | |
tags: ["*"] | |
pull_request: | |
# Check all PR | |
jobs: | |
build-and-publish: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: install dependencies | |
run: | | |
pip install --upgrade pip | |
pip install -r doc/requirements.txt | |
- name: build documentation | |
run: | | |
cd doc | |
make html | |
rm -rf _build/html/.doctrees/ _build/html/.buildinfo | |
rm -rf _build/html/_static/bootswatch-2.3.2/ _build/html/_static/bootstrap-2.3.2/ | |
shopt -s extglob | |
cd _build/html/_static/bootswatch-* && rm -rf !(flatly) && cd - | |
- name: put documentation in the website | |
run: | | |
git clone https://github.com/$GITHUB_REPOSITORY --branch gh-pages gh-pages | |
rm -rf gh-pages/.git | |
REF_KIND=$(echo $GITHUB_REF | cut -d / -f2) | |
if [[ "$REF_KIND" == "tags" ]]; then | |
TAG=${GITHUB_REF#refs/tags/} | |
mv doc/_build/html/ gh-pages/$TAG | |
else | |
rm -rf gh-pages/latest | |
mv doc/_build/html/ gh-pages/latest | |
fi | |
- name: deploy to gh-pages | |
if: github.event_name == 'push' | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./gh-pages/ | |
force_orphan: true |