Skip to content

added name for blog #12

added name for blog

added name for blog #12

Workflow file for this run

name: Build and deploy site
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: write
concurrency:
group: pages-${{ github.ref }}
cancel-in-progress: false
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
# Full history needed for git-revision-date-localized plugin
fetch-depth: 0
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Set up Python
run: uv python install 3.12
- name: Install dependencies
run: uv sync --frozen || uv sync
- name: Configure git identity
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
- name: Build and deploy to gh-pages
run: uv run mkdocs gh-deploy --force --clean --no-history