fixed the runner
Some checks failed
PyInstaller Build / build (push) Failing after 21s

This commit is contained in:
2026-02-11 15:37:17 +01:00
parent 7523f66fe4
commit 1f22e82614

View File

@@ -7,23 +7,23 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pyinstaller
- name: Build with PyInstaller
run: |
pyinstaller --onefile --name myapp main.py
run: pyinstaller --onefile --name myapp main.py
- name: Upload Executable
uses: actions/upload-artifact@v3
with:
name: myapp-linux
path: dist/myapp
path: dist/myapp