Publish book #31
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: Publish book | |
on: | |
release: | |
types: [published] | |
workflow_dispatch: | |
jobs: | |
build-book: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Setup environment | |
run: pip install --upgrade jupyter-book jupytext beautifulsoup4 | |
- name: Cache jupyter-cache folder | |
uses: actions/cache@v2 | |
env: | |
cache-name: jupyter-cache | |
with: | |
path: jupyter-book/_build/.jupyter_cache | |
key: v1-${{ github.ref }}-${{ hashFiles('notebook_scripts/**/*.py') }} | |
restore-keys: | | |
v1-${{ github.ref }}-${{ hashFiles('notebook_scripts/**/*.py') }} | |
v1-${{ github.ref }} | |
v1-refs/heads/master | |
- name: Build the JupyterBook | |
run: make | |
- name: Create CNAME record | |
run: | | |
cd ./jupyter-book/_build/html/ | |
echo "www.sc-best-practices.org" > CNAME | |
- name: Deploy to Github Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./jupyter-book/_build/html/ |