Files
Teletext-Editor/.gitea/workflows/build-windows.yaml
Daniel Dybing 42e189635b
Some checks failed
Build Linux / Build Linux (push) Successful in 1m34s
Build Windows / Build Windows (push) Failing after 40s
Configure Gitea Workflows and Add Build Scripts
- Update build-linux.yaml to use standard Ubuntu runner.
- Update build-windows.yaml to use tobix/pywine container for cross-compilation on Linux.
- Add build_app.py and check_ttx6.py helper scripts.
2026-01-13 17:48:00 +01:00

27 lines
700 B
YAML

name: Build Windows
on: [push, pull_request]
jobs:
build:
name: Build Windows
runs-on: ubuntu-latest
container:
image: tobix/pywine:3.10
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Dependencies
run: |
wine python -m pip install --upgrade pip
wine pip install -r requirements.txt
- name: Build Executable
run: |
wine pyinstaller --onefile --windowed --name TeletextEditor_Windows.exe --paths src src/main.py
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: TeletextEditor-Windows
path: dist/TeletextEditor_Windows.exe