Skip to content

Add Hugo docs site and make-docs conversion scripts #1

Add Hugo docs site and make-docs conversion scripts

Add Hugo docs site and make-docs conversion scripts #1

Workflow file for this run

name: Deploy docs
on:
push:
branches: [main]
paths:
- 'site/**'
- 'scripts/make-docs/**'
- 'src/**/Doc/**'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Install pandoc
run: |
curl -sLO https://github.com/jgm/pandoc/releases/download/3.6.4/pandoc-3.6.4-1-amd64.deb
sudo dpkg -i pandoc-3.6.4-1-amd64.deb
- name: Convert LaTeX docs to Markdown
run: scripts/make-docs/convert.sh
- name: Install Hugo
uses: peaceiris/actions-hugo@v3
with:
hugo-version: '0.147.0'
extended: true
- name: Build Hugo site
run: hugo --minify
working-directory: site
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: site/public
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4