Skip to content

Fix formatting and update version header in CHANGELOG #93

Fix formatting and update version header in CHANGELOG

Fix formatting and update version header in CHANGELOG #93

name: Build Nallely Binary for macOS arm64
on:
push:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.14'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyinstaller
pip install -e .
- name: Prepare Trevor-UI
run: |
(cd trevor && yarn install && yarn build)
bash ./prepare-trevor-ui.bash
- name: Build with PyInstaller
run: |
pyinstaller nallely.spec
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: nallely-macos-arm64
path: dist/nallely.bin