Skip to content

Update README.md

Update README.md #32

name: Build SELFIX Windows EXE
on:
push:
branches: [main]
jobs:
build-windows-exe:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install pyinstaller
- name: Build EXE with PyInstaller
run: |
pyinstaller --onefile selfix_gui.py
- name: Upload EXE as artifact
uses: actions/upload-artifact@v4
with:
name: SELFIX-Windows-EXE
path: dist/selfix_gui.exe