Skip to content

Commit 727e592

Browse files
author
arch
committed
update github windows buld action
1 parent ad0bf69 commit 727e592

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/windows_build.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,20 @@ jobs:
3030
- name: Get Application Version
3131
id: get_version
3232
uses: battila7/get-version-action@v2
33+
- name: Build Application Documentation
34+
shell: bash -l {0}
35+
run: |
36+
cd docs/build
37+
mkdocs build
38+
cd ../..
3339
- name: Build Application
3440
shell: bash -l {0}
3541
run: |
3642
pyinstaller --add-data="funscript_editor/config/*;funscript_editor/config" --add-data="assets/*;." --hidden-import "pynput.keyboard._win32" --hidden-import "pynput.mouse._win32" funscript-editor.py
43+
- name: Move Documentation to Application Build Directory
44+
shell: bash -l {0}
45+
run: |
46+
mv "docs/app/site" "dist/funscript-editor/funscript_editor/docs"
3747
- name: Add Version to Build
3848
shell: bash -l {0}
3949
run: |

0 commit comments

Comments
 (0)