Add icon made by @DamiDoop, should be built with it on macOS and Windows now

This commit is contained in:
2024-06-26 19:26:39 -04:00
parent 1404d083f4
commit f891965812
4 changed files with 10 additions and 7 deletions

View File

@@ -31,7 +31,7 @@ jobs:
pip install -r requirements.txt
- name: Build Package
run: |
nuitka3 --show-progress --include-data-dir=data=data --assume-yes-for-downloads --onefile --plugin-enable=pyside6 NUSGet.py
nuitka3 --show-progress --include-data-dir=data=data --include-data-dir=resources=resources --assume-yes-for-downloads --onefile --plugin-enable=pyside6 NUSGet.py
- name: Prepare Package for Upload
run: |
mv NUSGet.bin ~/NUSGet.bin
@@ -59,7 +59,7 @@ jobs:
pip install -r requirements.txt
- name: Build Package
run: |
nuitka3 --show-progress --include-data-dir=data=data --assume-yes-for-downloads --standalone --plugin-enable=pyside6 NUSGet.py --macos-create-app-bundle --disable-console
nuitka3 --show-progress --include-data-dir=data=data --include-data-dir=resources=resources --assume-yes-for-downloads --standalone --plugin-enable=pyside6 NUSGet.py --macos-create-app-bundle --macos-app-icon=resources/icon.png --disable-console
- name: Prepare Package for Upload
run: |
mv NUSGet.app ~/NUSGet.app
@@ -89,7 +89,7 @@ jobs:
pip install -r requirements.txt
- name: Build Package
run: |
nuitka --show-progress --include-data-dir=data=data --assume-yes-for-downloads --onefile --plugin-enable=pyside6 NUSGet.py --disable-console
nuitka --show-progress --include-data-dir=data=data --include-data-dir=resources=resources --assume-yes-for-downloads --onefile --windows-icon-from-ico=resources/icon.png --plugin-enable=pyside6 NUSGet.py --disable-console
- name: Upload Package
uses: actions/upload-artifact@v4.3.0
with: