1 parent 56e4eff commit aae17cfCopy full SHA for aae17cf
1 file changed
.github/workflows/ci.yml
@@ -24,16 +24,15 @@ jobs:
24
java-version: ${{matrix.javaVersion}}
25
distribution: temurin
26
- name: Configure Docker
27
+ id: setup_docker
28
uses: docker/setup-docker-action@v4
29
with:
30
version: ${{matrix.dockerVersion}}
31
channel: stable
32
- name: Build with Maven
33
env:
- DOCKER_HOST: ${{matrix.dockerHost}}
34
- run: |
35
- [[ -z "$DOCKER_HOST" ]] && unset DOCKER_HOST
36
- ./mvnw --no-transfer-progress verify
+ DOCKER_HOST: ${{steps.setup_docker.outputs.sock}}
+ run: ./mvnw --no-transfer-progress verify
37
38
tcp:
39
runs-on: ubuntu-20.04
0 commit comments