From 757debce3a77c39a4f9b7214b392b866f77ce99a Mon Sep 17 00:00:00 2001 From: Pakobbix Date: Sat, 27 May 2023 15:23:35 +0200 Subject: [PATCH] trying nuitka with linux --- .github/workflows/package.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index c7f9444..e2d7a8a 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -26,7 +26,7 @@ jobs: pip install nuitka - name: Build and package - run: nuitka StartUI.py --onefile --enable-plugin=pyqt5 --product-version=1.6.0 --disable-console --include-data-files=webuiGUI.py=webuiGUI.py --output-dir=./dist --noinclude-pytest-mode=nofollow --noinclude-setuptools-mode=nofollow + run: python3 -m nuitka StartUI.py --onefile --enable-plugin=pyqt5 --product-version=1.6.0 --disable-console --include-data-files=webuiGUI.py=webuiGUI.py --output-dir=./dist --noinclude-pytest-mode=nofollow --noinclude-setuptools-mode=nofollow - name: remove build folders run: | @@ -34,6 +34,10 @@ jobs: rm -rf dist/StartUI.dist rm -rf dist/StartUI.onefile-build + - name: Executive permission + run: | + chmod +x dist/StartUI + - name: Upload artifacts uses: actions/upload-artifact@v3 with: