Skip to content

Commit f3228dd

Browse files
authored
Fix brew on macos (#1)
1 parent 61aa622 commit f3228dd

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

action.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,13 @@ runs:
6060

6161
- name: Install PostGIS (Mac)
6262
if: runner.os == 'macOS'
63-
run: brew install postgis
63+
run: brew install postgis || true
64+
shell: bash
65+
66+
# A workaround for postgis installation bug on macOS. Might not be needed in the future
67+
- name: Brew workaround 2 (Mac)
68+
if: runner.os == 'macOS'
69+
run: brew link --overwrite python@3.11
6470
shell: bash
6571

6672
- name: Decide Postgis version (Windows)

0 commit comments

Comments
 (0)