File tree Expand file tree Collapse file tree 2 files changed +15
-5
lines changed Expand file tree Collapse file tree 2 files changed +15
-5
lines changed Original file line number Diff line number Diff line change 52
52
- name : Build and push amd64 Release Docker Image to DockerHub
53
53
uses : docker/build-push-action@v2
54
54
with :
55
- build-args : DEBUG_BUILD=0,BASE_IMAGE_SUFFIX=
55
+ build-args : |
56
+ DEBUG_BUILD=0
57
+ BASE_IMAGE_SUFFIX=
56
58
builder : ${{ steps.buildx.outputs.name }}
57
59
context : .
58
60
file : ./Dockerfile
65
67
- name : Build and push amd64 Debug Docker Image to DockerHub
66
68
uses : docker/build-push-action@v2
67
69
with :
68
- build-args : DEBUG_BUILD=1,BASE_IMAGE_SUFFIX=-debug
70
+ build-args : |
71
+ DEBUG_BUILD=1
72
+ BASE_IMAGE_SUFFIX=-debug
69
73
builder : ${{ steps.buildx.outputs.name }}
70
74
context : .
71
75
file : ./Dockerfile
80
84
- name : Build and push multiarch Release Docker Image to DockerHub
81
85
uses : docker/build-push-action@v2
82
86
with :
83
- build-args : DEBUG_BUILD=0,BASE_IMAGE_SUFFIX=
87
+ build-args : |
88
+ DEBUG_BUILD=0
89
+ BASE_IMAGE_SUFFIX=
84
90
builder : ${{ steps.buildx.outputs.name }}
85
91
context : .
86
92
file : ./Dockerfile
93
99
- name : Build and push multiarch Debug Docker Image to DockerHub
94
100
uses : docker/build-push-action@v2
95
101
with :
96
- build-args : DEBUG_BUILD=1,BASE_IMAGE_SUFFIX=-debug
102
+ build-args : |
103
+ DEBUG_BUILD=1
104
+ BASE_IMAGE_SUFFIX=-debug
97
105
builder : ${{ steps.buildx.outputs.name }}
98
106
context : .
99
107
file : ./Dockerfile
Original file line number Diff line number Diff line change 40
40
- name : Build amd64 release image locally to Docker
41
41
uses : docker/build-push-action@v2
42
42
with :
43
- build-args : DEBUG_BUILD=0,BASE_IMAGE_SUFFIX=
43
+ build-args : |
44
+ DEBUG_BUILD=0
45
+ BASE_IMAGE_SUFFIX=
44
46
builder : ${{ steps.buildx.outputs.name }}
45
47
context : .
46
48
file : ./Dockerfile
You can’t perform that action at this time.
0 commit comments