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 21e15cd commit dfcd66dCopy full SHA for dfcd66d
.github/workflows/build.yml
@@ -97,6 +97,12 @@ jobs:
97
if: ${{ !matrix.container }}
98
uses: ./.github/actions/freediskspace
99
100
+ - name: Install Docker on Alpine Linux
101
+ if: ${{ contains(matrix.container.image, 'alpine') }}
102
+ run: |
103
+ sudo apk add docker-cli
104
+ sudo docker ps
105
+
106
- name: Setup Environment
107
uses: ./.github/actions/environment
108
@@ -216,11 +222,6 @@ jobs:
216
222
name: ${{ github.sha }}
217
223
path: src
218
224
219
- - name: Install Docker on Alpine Linux
220
- if: ${{ contains(matrix.container.image, 'alpine') }}
221
- run: |
- sudo apk add docker-cli
-
225
- name: Integration test
226
uses: getsentry/github-workflows/sentry-cli/integration-test/@v2
227
with:
0 commit comments