Skip to content

Commit 1d7c885

Browse files
committed
fix: release workflow
1 parent 422fdaf commit 1d7c885

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,15 @@ jobs:
6767
sudo apt-get update
6868
sudo apt-get install -y gcc-aarch64-linux-gnu
6969
70+
# The Docker runtime is not available by default on macOS runners
71+
# https://github.com/actions/runner-images/issues/2150
72+
# https://blog.netnerds.net/2022/11/docker-macos-github-actions/
73+
- name: Install Docker
74+
if: runner.os == 'macOS'
75+
run: |
76+
brew install docker
77+
colima start
78+
7079
# For Linux, use custom Docker image with plpgsql_check
7180
- name: Build and start PostgreSQL with plpgsql_check
7281
if: runner.os == 'macOS' || runner.os == 'Linux'

0 commit comments

Comments
 (0)