Skip to content

try to fix build

try to fix build #9

Workflow file for this run

name: docs
on:
push:
branches:
- main
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.10.6
- run: |
pip install lazydocs mkdocs mkdocs-awesome-pages-plugin
- run: ./build-docs.sh
- run: python3 _transform_md_to_jsx.py
- name: 'Save Generated Markdown'
uses: actions/upload-artifact@v3
with:
name: generated_docs
path: ./docs/docstrings/sindri.jsx.md
retention-days: 90