Removed compiled translations and added step to build them

This commit is contained in:
2024-07-04 06:32:24 +10:00
parent ca81c2e6d3
commit 62467bb616
8 changed files with 16 additions and 0 deletions

View File

@@ -31,6 +31,7 @@ jobs:
pip install -r requirements.txt
- name: Build Package
run: |
pyside6-project build
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: |
@@ -59,6 +60,7 @@ jobs:
pip install -r requirements.txt
- name: Build Package
run: |
pyside6-project build
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
- name: Prepare Package for Upload
run: |
@@ -89,6 +91,7 @@ jobs:
pip install -r requirements.txt
- name: Build Package
run: |
pyside6-project build
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 --windows-console-mode=disable
- name: Upload Package
uses: actions/upload-artifact@v4.3.0