Skip to content

Commit 7fab000

Browse files
committed
fix component doc path
1 parent 88c6d4a commit 7fab000

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/build-docs.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,12 @@ jobs:
213213
fi
214214
ls -l build
215215
popd
216-
mv ${COMPONENT}/docs/build/html/* artifacts/docs/
216+
if [[ "${{ inputs.component }}" != "cuda-python" ]]; then
217+
TARGET="${{ inputs.component }}"
218+
else
219+
TARGET=""
220+
fi
221+
mv ${COMPONENT}/docs/build/html/* artifacts/docs/${TARGET}
217222
218223
# TODO: Consider removing this step?
219224
- name: Upload doc artifacts

0 commit comments

Comments
 (0)