Skip to content

Commit 88e3d9e

Browse files
committed
Fix docs job: install wheel before building
Signed-off-by: cdunning <cdunning@nvidia.com>
1 parent 014f841 commit 88e3d9e

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454

5555
docs:
5656
name: Build Docs
57-
needs: images
57+
needs: [images, build]
5858
runs-on: ubuntu-latest
5959
timeout-minutes: 10
6060
container:
@@ -63,6 +63,15 @@ jobs:
6363
- name: Checkout repository
6464
uses: actions/checkout@v6
6565

66+
- name: Download wheel
67+
uses: actions/download-artifact@v4
68+
with:
69+
name: wheel-py3.12-linux-x86_64
70+
path: dist/
71+
72+
- name: Install wheel
73+
run: pip install dist/*.whl
74+
6675
- name: Build documentation
6776
run: make -C docs html
6877

0 commit comments

Comments
 (0)