Skip to content

Merge pull request #138 from funstory-ai/fix-formula-font-pattern #63

Merge pull request #138 from funstory-ai/fix-formula-font-pattern

Merge pull request #138 from funstory-ai/fix-formula-font-pattern #63

Workflow file for this run

name: docs
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- name: Setup uv with Python 3.12
uses: astral-sh/setup-uv@f94ec6bedd8674c4426838e6b50417d36b6ab231 # v5.3.1
with:
python-version: "3.12"
enable-cache: true
cache-dependency-glob: "uv.lock"
- 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: uv sync
- run: uv run mkdocs gh-deploy --force