Skip to content

lower error long on listener update #244

lower error long on listener update

lower error long on listener update #244

Workflow file for this run

name: Deploy Sphinx documentation to Pages
on:
push:
branches: [ "main" ]
jobs:
pages:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Install system dependencies
run: |
sudo apt-get update -y
sudo apt-get install -y gcc python3-dev libpq-dev postgresql-client
pg_config --version
- id: deployment
name: Build Sphinx (classical)
uses: sphinx-notes/pages@v3
with:
publish: false
python_version: '3.10'
env:
SETUPTOOLS_SCM_PRETEND_VERSION: 1
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ${{ steps.deployment.outputs.artifact }}