stavrina is pushing an update 🌳 #41
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: deploy | |
run-name: ${{ github.actor }} is pushing an update 🌳 | |
on: | |
# Trigger the workflow on push to main branch | |
push: | |
branches: | |
- main | |
# This job installs dependencies, build the book, and pushes it to `gh-pages` | |
jobs: | |
build-and-deploy-book: | |
runs-on: ${{ matrix.os }} | |
permissions: write-all | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: [3.9.17] | |
steps: | |
- uses: actions/checkout@v4 | |
# Install dependencies | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install -r requirements.txt | |
# Build the book | |
- name: Build the book | |
run: | | |
jupyter-book build handbook | |
# Deploy the book's HTML to gh-pages branch | |
- name: Deploy to GitHub pages | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.ACTIONS_DEPLOY_KEY }} | |
publish_dir: handbook/_build/html |