Skip to content

Commit be4696b

Browse files
committed
test
1 parent 364754e commit be4696b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-docs.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
if: github.event_name == 'pull_request' && github.base_ref == 'dev'
5353
run: |
5454
echo "Testing documentation build for PR..."
55-
sphinx-build docs/source docs/build/html
55+
poetry run sphinx-build docs/source docs/build/html
5656
5757
5858
- name: Generate missing tags list
@@ -86,14 +86,14 @@ jobs:
8686
echo "Building docs for $TAG..."
8787
git checkout $TAG
8888
mkdir -p docs/build/versions/$TAG
89-
sphinx-build docs/source docs/build/versions/$TAG
89+
poetry run sphinx-build docs/source docs/build/versions/$TAG
9090
done
9191
9292
- name: Build documentation for dev branch
9393
if: github.ref == 'refs/heads/dev'
9494
run: |
9595
echo "Building docs for dev branch..."
96-
sphinx-build docs/source docs/build/versions/dev
96+
poetry run sphinx-build docs/source docs/build/versions/dev
9797
9898
- name: Deploy to GitHub Pages
9999
if: github.event_name != 'pull_request'

0 commit comments

Comments
 (0)