forked from NinjaCheetah/NUSGet
Added missing argument for Windows and macOS builds
This commit is contained in:
parent
8dd7f4e7a5
commit
cc85811a93
4
.github/workflows/python-build.yml
vendored
4
.github/workflows/python-build.yml
vendored
@ -59,7 +59,7 @@ jobs:
|
||||
pip install -r requirements.txt
|
||||
- name: Build Package
|
||||
run: |
|
||||
nuitka3 --show-progress --assume-yes-for-downloads --onefile --plugin-enable=pyside6 NUSD-Py.py --macos-create-app-bundle --disable-console
|
||||
nuitka3 --show-progress --include-data-dir=data=data --assume-yes-for-downloads --onefile --plugin-enable=pyside6 NUSD-Py.py --macos-create-app-bundle --disable-console
|
||||
- name: Prepare Package for Upload
|
||||
run: |
|
||||
mv NUSD-Py.app ~/NUSD-Py.app
|
||||
@ -89,7 +89,7 @@ jobs:
|
||||
pip install -r requirements.txt
|
||||
- name: Build Package
|
||||
run: |
|
||||
nuitka --show-progress --assume-yes-for-downloads --onefile --plugin-enable=pyside6 NUSD-Py.py --disable-console
|
||||
nuitka --show-progress --include-data-dir=data=data --assume-yes-for-downloads --onefile --plugin-enable=pyside6 NUSD-Py.py --disable-console
|
||||
- name: Upload Package
|
||||
uses: actions/upload-artifact@v4.3.0
|
||||
with:
|
||||
|
@ -35,12 +35,12 @@ nuitka --show-progress --assume-yes-for-downloads --onefile --plugin-enable=pysi
|
||||
|
||||
**Linux**
|
||||
```
|
||||
nuitka3 --show-progress --include-data-dir=data=data --assume-yes-for-downloads --onefile --plugin-enable=pyside6 NUSD-Py.py
|
||||
nuitka3 --show-progress --include-data-dir=data=data --include-data-dir=data=data --assume-yes-for-downloads --onefile --plugin-enable=pyside6 NUSD-Py.py
|
||||
```
|
||||
|
||||
**macOS**
|
||||
```
|
||||
nuitka3 --show-progress --assume-yes-for-downloads --onefile --plugin-enable=pyside6 NUSD-Py.py --macos-create-app-bundle --disable-console
|
||||
nuitka3 --show-progress --include-data-dir=data=data --assume-yes-for-downloads --onefile --plugin-enable=pyside6 NUSD-Py.py --macos-create-app-bundle --disable-console
|
||||
```
|
||||
|
||||
The result will be a single binary named `NUSD-Py` that contains everything required to run NUSD-Py. No dependencies are needed on the target system.
|
||||
|
Loading…
x
Reference in New Issue
Block a user