Skip to content

Commit bb36327

Browse files
authored
ci: fix install docker
1 parent 78aa72a commit bb36327

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/docker.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,20 @@ jobs:
3333
steps:
3434
- uses: actions/checkout@v4
3535

36-
- name: Install Docker
36+
- name: Install Docker (Linux)
37+
if: runner.os == 'Linux'
3738
uses: docker/setup-docker-action@v4
3839

40+
- name: Install Docker (macOS)
41+
if: runner.os == 'macOS'
42+
run: brew install docker
43+
44+
- name: Install Docker (Windows)
45+
if: runner.os == 'Windows'
46+
uses: crazy-max/ghaction-chocolatey@v3
47+
with:
48+
args: install docker
49+
3950
- name: Prepare Eask (Unix)
4051
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
4152
run: |

0 commit comments

Comments
 (0)