Fix formatting and update version header in CHANGELOG #93
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: 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 |