Skip to content

try trigger build

try trigger build #1

Workflow file for this run

name: Build macOS App
on:
push:
branches:
- master
- macos # debug - remove me
pull_request:
branches:
- master
- macos # debug - remove me
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.13
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyinstaller
brew install gtk+3 pango cairo harfbuzz ffmpeg
- name: Build macOS app with PyInstaller
run: |
pyinstaller tauon.spec
- name: Create DMG
run: |
mkdir -p dist/dmg
APP_NAME="TauonMusicBox"
APP_PATH="dist/${APP_NAME}.app"
DMG_PATH="dist/dmg/${APP_NAME}.dmg"
# Create a .dmg package
hdiutil create -volname "$APP_NAME" -srcfolder "$APP_PATH" -ov -format UDZO "$DMG_PATH"
- name: Upload DMG artifact
uses: actions/upload-artifact@v4
with:
name: TauonMusicBox-dmg
path: dist/dmg/TauonMusicBox.dmg