Skip to content

WIP: try to remove condition #11

WIP: try to remove condition

WIP: try to remove condition #11

Workflow file for this run

name: Build Executables
on:
push:
branches:
- build
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies
run: |
pip install pyinstaller
pip install pyqt5
- name: Build
run: pyinstaller --onefile cpppc.py
- name: Archive artifacts
run: zip -r executables-${{ matrix.os }}.zip dist/
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: executables-${{ matrix.os }}
path: executables-${{ matrix.os }}.zip