Skip to content

Commit

Permalink
Unlink then relink brew python
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Jan 19, 2024
1 parent 489267c commit 268966a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/actions/setup-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ runs:
steps:
# Python3 is already installed though Homebrew
- name: Install brew dependencies
run: brew install --force --overwrite python ruby openjdk node php lmdb mcpp
run: |
brew unlink python3
brew link --overwrite python3
brew install ruby openjdk node php lmdb mcpp
shell: bash
if: runner.os == 'macOS'

Expand Down

0 comments on commit 268966a

Please sign in to comment.