Skip to content

Commit

Permalink
Uninstall packaging through brew when building Updater (#686)
Browse files Browse the repository at this point in the history
  • Loading branch information
IhateTrains authored Nov 20, 2024
1 parent c8b62e7 commit d7b3a69
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/actions/build_frontend/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ then
cd "${FRONTER_DIR}/Updater"
PIP_BREAK_SYSTEM_PACKAGES=1 pip3 install pip-tools
python3 -m piptools compile -o requirements.txt pyproject.toml

if [ "$RUNNER_OS" = "macOS" ]
then
brew uninstall packaging
fi

PIP_BREAK_SYSTEM_PACKAGES=1 pip3 install -r requirements.txt
python3 -m PyInstaller --onefile --icon=updater.ico updater.py
mkdir -p "${GITHUB_WORKSPACE}/${RELEASE_DIR}/Updater"
Expand Down

0 comments on commit d7b3a69

Please sign in to comment.