moved the styling into seperate files that are now contained in the styling directory ; workflow should work with this!
All checks were successful
Build MuCaPy Executable / build-and-package (push) Successful in 1m43s

This commit is contained in:
rattatwinko
2025-06-02 14:10:19 +02:00
parent e50ab9d03c
commit b3b3d77394
10 changed files with 217 additions and 177 deletions

View File

@@ -9,6 +9,7 @@ on:
jobs:
build-and-package:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
@@ -27,10 +28,13 @@ jobs:
run: pip install pyinstaller
- name: Build executable with PyInstaller
run: pyinstaller --onefile --windowed mucapy/main.py
run: |
pyinstaller --onefile --windowed mucapy/main.py \
--add-data "mucapy/styling:mucapy/styling"
- name: Upload executable artifact
uses: actions/upload-artifact@v3
with:
name: mucapy-executable
path: dist/
path: dist/