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: