Skip to content

Bump furo from 2023.9.10 to 2024.1.29 #265

Bump furo from 2023.9.10 to 2024.1.29

Bump furo from 2023.9.10 to 2024.1.29 #265

Workflow file for this run

name: Build and deploy
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
notes:
name: Generate notes
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.x'
cache: 'pip'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Generate notes
run: make -C notes html
- name: Upload to GitHub Pages
if: ${{ github.event_name == 'push' }}
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./notes/_build/html