Skip to content

ci(workflows): add semantic-release pipeline and PR commit linting #28

ci(workflows): add semantic-release pipeline and PR commit linting

ci(workflows): add semantic-release pipeline and PR commit linting #28

Workflow file for this run

name: Docs
on:
push:
branches: [ main ]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install docs deps
run: |
python -m pip install --upgrade pip
pip install -e ".[docs]"
- name: Build site
run: |
python -m mkdocs build --strict
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site
cname: docs.pythonnative.com