Skip to content

Commit

Permalink
fix: brew upgrade issue
Browse files Browse the repository at this point in the history
  • Loading branch information
MuZhou233 committed Feb 8, 2024
1 parent 6fb1ba0 commit 47bc230
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,14 @@ jobs:
- name: Setup PostgreSQL & MySQL & SQLite (for macOS)
if: matrix.os == 'macOS-latest'
run: |
# Unlink and re-link to prevent errors when github mac runner images
# https://github.com/actions/setup-python/issues/577
brew list -1 | grep python | while read formula; do brew unlink $formula; brew link --overwrite $formula; done
brew update
brew uninstall --ignore-dependencies node
brew install node@18
brew link --overwrite node@18
brew link --overwrite [email protected]
brew upgrade
brew services start postgresql
brew install [email protected] sqlite
Expand Down

0 comments on commit 47bc230

Please sign in to comment.