Skip to content

Commit de23098

Browse files
committed
fix
1 parent 9c3e916 commit de23098

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/build_pr_documentation.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,19 @@ jobs:
4343
- name: Make documentation
4444
shell: bash
4545
run: |
46-
make doc BUILD_DIR=./doc-build VERSION=pr_${{ env.PR_NUMBER }}
47-
mv ./doc-build/optimum.intel optimum-intel
48-
cd optimum-intel
46+
doc-builder build optimum.intel docs/source/ \
47+
--repo_name optimum-intel \
48+
--build_dir intel-doc-build/ \
49+
--version pr_${{ env.PR_NUMBER }} \
50+
--version_tag_suffix "" \
51+
--html \
52+
--clean
53+
cd intel-doc-build
54+
mv optimum.intel optimum-intel
4955
echo ${{ env.COMMIT_SHA }} > ./commit_sha
5056
echo ${{ env.PR_NUMBER }} > ./pr_number
5157
5258
- uses: actions/upload-artifact@v4
5359
with:
5460
name: doc-build-artifact
55-
path: optimum-intel
61+
path: optimum-intel/intel-doc-build/

0 commit comments

Comments
 (0)