Skip to content

Update cross-build.yml #5

Update cross-build.yml

Update cross-build.yml #5

Workflow file for this run

name: Cross-Platform Build
on: push
jobs:
pyinstaller-build-windows:
runs-on: windows-latest
steps:
- name: Build executable
uses: sayyid5416/pyinstaller@v1
with:
python_ver: '3.12'
# pyinstaller_ver: '==6.9.0'
spec: 'maestro/maestro.py'
# requirements: 'src/requirements.txt'
upload_exe_with_name: 'maestro-windows'
options: --onefile, --name "maestro"
# --icon "data/icons/maestro_icon.ico"
pyinstaller-build-mac:
runs-on: macos-12
steps:
- name: Build executable
uses: sayyid5416/pyinstaller@v1
with:
python_ver: '3.12'
# pyinstaller_ver: '==6.9.0'
spec: 'maestro/maestro.py'
# requirements: 'src/requirements.txt'
upload_exe_with_name: 'maestro-mac'
options: --onefile, --name "maestro", --icon "data/icons/maestro_icon.icns"
pyinstaller-build-linux:
runs-on: ubuntu-latest
steps:
- name: Build executable
uses: sayyid5416/pyinstaller@v1
with:
python_ver: '3.12'
# pyinstaller_ver: '==6.9.0'
spec: 'maestro/maestro.py'
# requirements: 'src/requirements.txt'
upload_exe_with_name: 'maestro-ubuntu'
options: --onefile, --name "maestro"