Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/build-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ jobs:
fi

- name: Install Homebrew packages
run: brew install just awscli macmon
run: brew install just awscli

- name: Install UV
uses: astral-sh/setup-uv@v6
Expand Down Expand Up @@ -243,6 +243,14 @@ jobs:
# Build the bundle
# ============================================================

- name: Add pinned macmon to PATH
run: |
MACMON_DIR=$(nix develop --command sh -c 'dirname $(which macmon)')
echo "Using macmon from: $MACMON_DIR"
echo "$MACMON_DIR" >> $GITHUB_PATH
# Remove any Homebrew macmon so PyInstaller can't accidentally pick it up
brew uninstall macmon 2>/dev/null || true

- name: Build PyInstaller bundle
run: uv run pyinstaller packaging/pyinstaller/exo.spec

Expand Down
Loading