Skip to content

WIP: Trying different approach #13

WIP: Trying different approach

WIP: Trying different approach #13

Workflow file for this run

name: Build Executables
on:
push:
branches:
- build
workflow_dispatch:
jobs:
build_linux:
runs-on: 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-linux.zip dist/
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: executables-linux
path: executables-linux.zip
build_windows:
runs-on: windows-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-windows.zip dist/
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: executables-windows
path: executables-windows.zip