File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed
Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Build windows app
2+
3+ on :
4+ push :
5+ branches : [ qt ]
6+
7+ jobs :
8+ build-windows :
9+
10+ runs-on : ' windows'
11+ env :
12+ RUNNER_TOOL_CACHE : /toolcache
13+ steps :
14+ - uses : actions/checkout@v4
15+ - uses : actions/setup-python@v4
16+ with :
17+ python-version : ' 3.12'
18+
19+ - name : Underbridge Core Python Requirements
20+ run : pip install -r requirements.txt
21+
22+ - run : pip install pyaudio
23+ - run : pip install imageio
24+ - run : pip install nuitka
25+ - run : pip install argparse
26+ - run : pip install requests
27+
28+ - name : Nuitka compile
29+ run : nuitka Underbridge.py --assume-yes-for-downloads
30+
31+ - name : Create NSIS Installer
32+ run : makensis wizard.nsi
33+
34+ - name : Check Files in upload folder
35+ run : dir
36+
37+ - name : Python uploader
38+ run : python nc_upload.py ${{ secrets.UBRIDGE_USER }} ${{ secrets.UBRIDGE_PASSWD }} https://cloud.raise-uav.com/ ubridge-light-wizard.exe App_Release/windows/Ubridge-light-wizard.exe
39+
You can’t perform that action at this time.
0 commit comments