chore: trigger macOS workflow on feature branch #4
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |