lower error long on listener update #244
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 }} |