Skip to content

Commit 7a52a0b

Browse files
committed
extend GH action for Build docs
1 parent 729956c commit 7a52a0b

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/CI_build.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,11 @@ jobs:
3131
working-directory: .
3232
run: msbuild PythonScript.sln /m /verbosity:minimal /p:configuration="${{ matrix.build_configuration }}" /p:platform="${{ matrix.build_platform }}"
3333

34+
- name: Build docs
35+
if: matrix.build_configuration == 'Release'
36+
working-directory: docs
37+
run: |
38+
python -m pip install --upgrade pip
39+
pip install -U sphinx
40+
make.bat html
3441

0 commit comments

Comments
 (0)