Skip to content

Add website

Add website #5

name: Deployment Workflow
on:
push:
branches:
- main
tags:
- '*'
pull_request:
workflow_dispatch:
jobs:
deploy-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.13'
- name: Install dependencies
run: |
pip install -r docs/requirements.txt
- name: Build docs
run: |
cd docs
make clean && make html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build/html