Skip to content

Add GitHub workflow to build an deploy #1

Add GitHub workflow to build an deploy

Add GitHub workflow to build an deploy #1

Workflow file for this run

name: "Build and Deploy Docs"
on:
push:
branches: [ docs ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- name: Install dependencies
run: |
pip install -r ./requirements.txt
- name: Build site
run: |
make html
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./build/html
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4