Skip to content

MNT: Pull the latest repos. #64

MNT: Pull the latest repos.

MNT: Pull the latest repos. #64

Workflow file for this run

name: Build Website
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Pages
id: pages
uses: actions/configure-pages@v4
- name: Download pandoc
uses: robinraju/release-downloader@v1.9
with:
repository: "jgm/pandoc"
latest: true
fileName: "pandoc-*-amd64.deb"
- name: Install pandoc
run: |
sudo dpkg -i pandoc-*-amd64.deb &&
sudo apt install -f -y
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: pip install -r docs/requirements.txt
- name: Build the website
run: make docs-ci
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./docs/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