Skip to content

feat: automated docgen #1

feat: automated docgen

feat: automated docgen #1

Workflow file for this run

name: Generate md files
on:
push:
branches:
- master
jobs:
mkdoc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: install self
run: |
pip install .
- name: build docs
run: python docgen/main.py
- name: debug
run: |
ls
cd docs
ls
- name: push to new gh branch
run: |
git checkout -b automated_mkdocs
git push --set-upstream origin automated_mkdocs