We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61aa622 commit f3228ddCopy full SHA for f3228dd
action.yml
@@ -60,7 +60,13 @@ runs:
60
61
- name: Install PostGIS (Mac)
62
if: runner.os == 'macOS'
63
- run: brew install postgis
+ 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
70
shell: bash
71
72
- name: Decide Postgis version (Windows)
0 commit comments