Skip to content

Commit

Permalink
Fix brew on macos (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
nyurik authored Nov 22, 2023
1 parent 61aa622 commit f3228dd
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,13 @@ runs:

- name: Install PostGIS (Mac)
if: runner.os == 'macOS'
run: brew install postgis
run: brew install postgis || true
shell: bash

# A workaround for postgis installation bug on macOS. Might not be needed in the future
- name: Brew workaround 2 (Mac)
if: runner.os == 'macOS'
run: brew link --overwrite [email protected]
shell: bash

- name: Decide Postgis version (Windows)
Expand Down

0 comments on commit f3228dd

Please sign in to comment.