From dcd2836ed27ab8b6090d3517e2c48f8a4480ff0b Mon Sep 17 00:00:00 2001 From: Thomas Schmelzer Date: Sun, 7 Jan 2024 21:19:12 +0400 Subject: [PATCH] pdoc action --- actions/pdoc/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/pdoc/action.yml b/actions/pdoc/action.yml index 531e09a..856e72d 100644 --- a/actions/pdoc/action.yml +++ b/actions/pdoc/action.yml @@ -44,12 +44,12 @@ runs: - name: Install pdoc shell: bash run: | - poetry run pip install --no-cache-dir pdoc==14.3.0 + pip install --no-cache-dir pdoc==14.3.0 - name: Build pdoc shell: bash run: | - poetry run pdoc -o artifacts/pdoc ${{ inputs.pdoc-arguments || '' }} ${{ inputs.source-folder || 'cvx' }} + pdoc -o artifacts/pdoc ${{ inputs.pdoc-arguments || '' }} ${{ inputs.source-folder || 'cvx' }} - name: Archive sphinx documentation uses: actions/upload-artifact@v3