Skip to content

version: bump version πŸš€ 0.1.0-beta.50 β†’ 0.1.0-alpha.51+6a5789d (#322) #27

version: bump version πŸš€ 0.1.0-beta.50 β†’ 0.1.0-alpha.51+6a5789d (#322)

version: bump version πŸš€ 0.1.0-beta.50 β†’ 0.1.0-alpha.51+6a5789d (#322) #27

Workflow file for this run

name: Docs
on:
push:
branches:
- main
paths:
- docs/**
- .github/workflows/deploy_docs.yml
- CNAME
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- uses: actions/setup-python@v5
with:
python-version: 3.12
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- uses: actions/cache@v4
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- run: pip install uv && uv sync --locked --project docs
- run: uv run --directory docs -m mkdocs gh-deploy --force