diff --git a/.github/workflows/continuous-deployment.yaml b/.github/workflows/continuous-deployment.yaml index 55f6026..3c187b5 100644 --- a/.github/workflows/continuous-deployment.yaml +++ b/.github/workflows/continuous-deployment.yaml @@ -29,7 +29,9 @@ jobs: - id: build-sphinx-documentation name: Build Sphinx documentation - run: pipenv run make build + run: | + pipenv run python createconf.py; + pipenv run sphinx-build -b html src _build; shell: bash working-directory: docs env: diff --git a/Makefile b/Makefile deleted file mode 100644 index b410805..0000000 --- a/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -serve: - pipenv run sphinx-autobuild -b html docs/src docs/_build_html - -build: - pip install -r docs/requirements.txt - python docs/createconf.py - cd ./docs && sphinx-build -b html src _build