File tree Expand file tree Collapse file tree 3 files changed +18
-20
lines changed Expand file tree Collapse file tree 3 files changed +18
-20
lines changed Original file line number Diff line number Diff line change
1
+ name : ' Docker Setup'
2
+ description : ' Setups the docker engine'
3
+
4
+ runs :
5
+ using : ' composite'
6
+ steps :
7
+ - name : Set up Docker
8
+ uses : docker/setup-docker-action@v4
9
+ with :
10
+ daemon-config : ' { "features": { "containerd-snapshotter": true } }'
11
+ - name : Setup Docker Buildx
12
+ uses : docker/setup-buildx-action@v3
13
+ with :
14
+ version : ' latest'
15
+ driver-opts : ' image=moby/buildkit:buildx-stable-1'
16
+ install : true
Original file line number Diff line number Diff line change 43
43
path : ${{ github.workspace }}/artifacts/packages/nuget
44
44
-
45
45
name : Set up Docker
46
- uses : docker/setup-docker-action@v4
47
- with :
48
- daemon-config : ' { "features": { "containerd-snapshotter": true } }'
49
- -
50
- name : Setup Docker Buildx
51
- uses : docker/setup-buildx-action@v3
52
- with :
53
- version : ' latest'
54
- driver-opts : ' image=moby/buildkit:buildx-stable-1'
55
- install : true
46
+ uses : ./.github/actions/docker-setup
56
47
-
57
48
name : Docker Test
58
49
if : success() && github.event_name == 'pull_request' || github.repository_owner != 'GitTools'
Original file line number Diff line number Diff line change 31
31
uses : ./.github/actions/cache-restore
32
32
-
33
33
name : Set up Docker
34
- uses : docker/setup-docker-action@v4
35
- with :
36
- daemon-config : ' { "features": { "containerd-snapshotter": true } }'
37
- -
38
- name : Setup Docker Buildx
39
- uses : docker/setup-buildx-action@v3
40
- with :
41
- version : ' latest'
42
- driver-opts : ' image=moby/buildkit:buildx-stable-1'
43
- install : true
34
+ uses : ./.github/actions/docker-setup
44
35
-
45
36
name : Docker Manifests
46
37
if : success() && github.event_name != 'pull_request' && github.repository_owner == 'GitTools' && github.ref_name == 'main'
You can’t perform that action at this time.
0 commit comments