Skip to content

Commit 29a2594

Browse files
author
phernandez
committed
fix: fix build on github ci for app installer
1 parent 071e76a commit 29a2594

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,12 @@ jobs:
7878
7979
- name: Build macOS installer
8080
run: |
81-
cd installer && uv run python setup.py bdist_mac
81+
cd installer
82+
uv pip install -e "..[dev]"
83+
# Use system Python paths to match local environment
84+
PYTHONHOME=/Library/Frameworks/Python.framework/Versions/3.12 \
85+
PYTHONPATH=/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12 \
86+
uv run python setup.py bdist_mac
8287
xattr -dr com.apple.quarantine "build/Basic Memory Installer.app"
8388
8489
- name: Zip macOS installer

0 commit comments

Comments
 (0)