8000 Doc nits (#57) · bpcreech/PyMiniRacer@c899615 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Doc nits (#57)

Doc nits (#57) #218

Workflow file for this run

name: docs
on:
push:
tags:
- v*
branches:
- main
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
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install hatch hatch-mkdocs
- run: hatch -vv run docs:gh-deploy --force
0