Skip to content

Commit e553fa5

Browse files
committed
Merge remote-tracking branch 'origin/qt' into qt
2 parents a50e48b + d3c5666 commit e553fa5

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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+

0 commit comments

Comments
 (0)