Skip to content

🍎 Build macOS

🍎 Build macOS #4

Workflow file for this run

name: 🍎 Build macOS
on: [workflow_call, workflow_dispatch]
jobs:
build:
strategy:
matrix:
arch: ["arm64", "x86_64"]
name: macOS ${{ matrix.arch }}
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Setup
run: |
python ./setup.py
- name: Build
run: |
source ./venv/bin/activate
python ./build.py desktop --arch ${{ matrix.arch }} --type release --output build/
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: build-artifact-macos-${{ matrix.arch }}
path: |
build/*