diff --git a/.github/workflows/build-python-pdoc.yml b/.github/workflows/build-python-pdoc.yml index 5883a1358..4e77223e5 100644 --- a/.github/workflows/build-python-pdoc.yml +++ b/.github/workflows/build-python-pdoc.yml @@ -12,16 +12,12 @@ jobs: uses: actions/setup-python@v2 with: python-version: 3.9 - - name: Install python build - run: python -m pip install build - shell: bash - - name: Building Python Wheel for documentation generation - run: python -m build --wheel --outdir documentation_dist - shell: bash + - name: Build wheel for documentation + uses: ./.github/actions/build - name: "Run Reference Documentation Generation" run: | pip install pdoc pipdeptree - pip install documentation_dist/*.whl + pip install dist/*.whl echo "documentation" > dependencies_documentation.txt pipdeptree >> dependencies_documentation.txt pdoc -o docs/python/html diskannpy