Skip to content

Update build GitHub Actions config, update .gitignore #2

Update build GitHub Actions config, update .gitignore

Update build GitHub Actions config, update .gitignore #2

Workflow file for this run

name: Docs
on:
workflow_dispatch:
push:
branches:
- main
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python3.12 -m pip install -r docs/requirements.txt
python3.12 -m pip install .
- name: MkDocs publish
run: mkdocs gh-deploy --force
working-directory: docs