Skip to content

Commit

Permalink
Fix build docs
Browse files Browse the repository at this point in the history
  • Loading branch information
avalentino committed May 4, 2024
1 parent 05ac0f5 commit befbfd9
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
submodules: 'true'

- name: Set up Python
uses: actions/setup-python@v5
Expand All @@ -31,6 +33,14 @@ jobs:
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
if [ -f requirements-docs.txt ]; then pip install -r requirements-docs.txt; fi
- name: Build
run: |
python -m build
- name: Install
run: |
python -m pip install dist/*.whl
- name: Build docs
run: |
mkdir -p _static
Expand Down

0 comments on commit befbfd9

Please sign in to comment.