Skip to content

Set up GitHub Actions to install Furo and build Site #1

Set up GitHub Actions to install Furo and build Site

Set up GitHub Actions to install Furo and build Site #1

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- main # Or the default branch of your repository
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x' # You can specify a particular version if needed
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt # Install dependencies listed in requirements.txt
- name: Build the documentation
run: |
python -m sphinx -b html sourcedir builddir # Adjust these to match your Sphinx setup
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./builddir # Path to where the built files are located