Skip to content

Fix typo.

Fix typo. #52

Workflow file for this run

name: docs
on:
push:
branches:
- main
env:
bot-name: nekit[bot]
bot-email: bot@nekit.dev
python-version: "3.13"
jobs:
docs:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup uv
uses: astral-sh/setup-uv@v5
with:
version: latest
python-version: ${{ env.python-version }}
- name: Setup bot user
run: |
git config --local user.name ${{ env.bot-name }}
git config --local user.email ${{ env.bot-email }}
- name: Deploy the documentation
run: uv run mkdocs gh-deploy --force