Skip to content

Merge pull request #27 from erseco/copilot/fix-connection-error-codes… #34

Merge pull request #27 from erseco/copilot/fix-connection-error-codes…

Merge pull request #27 from erseco/copilot/fix-connection-error-codes… #34

Workflow file for this run

# ./.github/workflows/docs.yml
name: Docs
permissions:
contents: read
on:
push:
branches: [main]
jobs:
build:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-python@v6
- name: Install Python deps
run: |
pip install -r requirements.txt
pip install -e .
- name: Build MkDocs site
run: make docs
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: site