Skip to content

Commit

Permalink
GHA: actually build the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBuchanan314 committed Feb 15, 2024
1 parent e3daf7e commit 16be3e1
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,14 @@ jobs:
run: |
cd ${{ github.workspace }}
python3 -m pip install .
- name: Build the docs
run: |
cd ./docs/
sphinx-apidoc -f -o _apidocs/ ../src/atmst
make html
- name: Archive generated docs
uses: actions/upload-artifact@v4
with:
name: html-docs
path: docs/_build/html/
- run: echo "This job's status is ${{ job.status }}."

0 comments on commit 16be3e1

Please sign in to comment.