Skip to content

Merge pull request #2 from AgentR1/blackbox_dev #9

Merge pull request #2 from AgentR1/blackbox_dev

Merge pull request #2 from AgentR1/blackbox_dev #9

Workflow file for this run

name: Deploy Documentation
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
- name: Install dependencies
run: |
pip install \
"mkdocs-material>=9.5,<10" \
pymdown-extensions
- name: Deploy to GitHub Pages
run: mkdocs gh-deploy --force --clean