Skip to content

fix variable typo mismatch (#16) #47

fix variable typo mismatch (#16)

fix variable typo mismatch (#16) #47

Workflow file for this run

name: Build and Deploy
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build_and_deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install and Build 🔧
run: |
pip install -r requirements.txt
make html-deploy
- name: Deploy 🚀
if: github.event_name == 'push'
uses: JamesIves/github-pages-deploy-action@4.1.4
with:
branch: gh-pages
folder: book_source/source/_build/html