Skip to content

chore: trigger macOS workflow on feature branch #4

chore: trigger macOS workflow on feature branch

chore: trigger macOS workflow on feature branch #4

Workflow file for this run

name: macOS Build
on:
workflow_dispatch:
push:
branches:
- feat/macos-installer
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Install dependencies
shell: bash
run: |
python -m pip install --upgrade pip
pip install -r requirements-tests.txt
pip install pyinstaller
- name: Build (same as local)
shell: bash
run: |
python tools/build.py
- name: Show build output
shell: bash
run: |
ls -la dist