We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e613ae0 commit 0285e62Copy full SHA for 0285e62
.github/workflows/build-and-deploy.yml
@@ -39,15 +39,21 @@ jobs:
39
ref: rtl-support
40
path: sphinx-rtl
41
42
- - name: Install custom Sphinx
43
- run: |
44
- cd sphinx-rtl
45
- pip install -e .
46
-
47
- name: Setup virtual environment
48
run: make venv
49
working-directory: ./Doc
50
+ - name: Install custom Sphinx in Doc venv
+ run: |
+ cd sphinx-rtl
+ ../Doc/venv/bin/pip install -e .
+
51
+ - name: Verify custom Sphinx installation
52
53
+ ../Doc/venv/bin/sphinx-build --version
54
+ echo "Sphinx location:"
55
+ ../Doc/venv/bin/python -c "import sphinx; print(sphinx.__file__)"
56
57
- name: Checkout translation files
58
uses: actions/checkout@v4
59
with:
0 commit comments