Skip to content

FIX Notebooks not updated by make notebooks (#743) #1

FIX Notebooks not updated by make notebooks (#743)

FIX Notebooks not updated by make notebooks (#743) #1

name: deploy-gh-pages
on:
push:
branches:
- main
- test-ci*
pull_request:
branches:
- main
jobs:
deploy-gh-pages:
runs-on: ubuntu-latest
env:
OMP_NUM_THREADS: 1
MKL_NUM_THREADS: 2
OPENBLAS_NUM_THREADS: 2
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
pip install -r requirements-dev.txt
- name: Cache jupyter-cache folder
uses: actions/cache@v3
env:
cache-name: jupyter-cache
with:
path: jupyter-book/_build/.jupyter_cache
key: v2-${{ github.ref }}-${{ hashFiles('python_scripts/**/*.py') }}
restore-keys: |
v2-${{ github.ref }}-${{ hashFiles('python_scripts/**/*.py') }}
v2-${{ github.ref }}
v2-refs/heads/main
- name: Build the JupyterBook
env:
GITHUB_PULL_REQUEST_NUMBER: ${{github.event.number}}
run: |
bash build_tools/build_jupyter_book.sh
echo ${{github.event.number}} > pull_request_number
- name: Upload jupyter-book artifact for PRs
if: ${{ github.event_name == 'pull_request' }}
uses: actions/upload-artifact@v3
with:
name: jupyter-book
path: |
jupyter-book/_build/html
pull_request_number
- name: GitHub Pages action
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
uses: peaceiris/actions-gh-pages@v3.6.1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./jupyter-book/_build/html
commit_message: "[ci skip] ${{ github.event.head_commit.message }}"