We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78aa72a commit bb36327Copy full SHA for bb36327
.github/workflows/docker.yml
@@ -33,9 +33,20 @@ jobs:
33
steps:
34
- uses: actions/checkout@v4
35
36
- - name: Install Docker
+ - name: Install Docker (Linux)
37
+ if: runner.os == 'Linux'
38
uses: docker/setup-docker-action@v4
39
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
50
- name: Prepare Eask (Unix)
51
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
52
run: |
0 commit comments