this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

GHA: actually build the docs

+10
+10
.github/workflows/build-docs.yml
··· 15 15 run: | 16 16 cd ${{ github.workspace }} 17 17 python3 -m pip install . 18 + - name: Build the docs 19 + run: | 20 + cd ./docs/ 21 + sphinx-apidoc -f -o _apidocs/ ../src/atmst 22 + make html 23 + - name: Archive generated docs 24 + uses: actions/upload-artifact@v4 25 + with: 26 + name: html-docs 27 + path: docs/_build/html/ 18 28 - run: echo "This job's status is ${{ job.status }}."