File tree Expand file tree Collapse file tree 2 files changed +8
-20
lines changed Expand file tree Collapse file tree 2 files changed +8
-20
lines changed Original file line number Diff line number Diff line change @@ -157,20 +157,15 @@ jobs:
157
157
- component : api
158
158
dockerfile : docker/api/Dockerfile
159
159
context : .
160
- build_args : |
161
- PYTHON_VERSION=${{ env.PYTHON_VERSION }}
160
+ build_args : " PYTHON_VERSION=${{ env.PYTHON_VERSION }}"
162
161
- component : worker-cpu
163
162
dockerfile : docker/worker/Dockerfile
164
163
context : .
165
- build_args : |
166
- PYTHON_VERSION=${{ env.PYTHON_VERSION }}
167
- WORKER_TYPE=cpu
164
+ build_args : " PYTHON_VERSION=${{ env.PYTHON_VERSION }}\n WORKER_TYPE=cpu"
168
165
- component : worker-gpu
169
166
dockerfile : docker/worker/Dockerfile
170
167
context : .
171
- build_args : |
172
- PYTHON_VERSION=${{ env.PYTHON_VERSION }}
173
- WORKER_TYPE=gpu
168
+ build_args : " PYTHON_VERSION=${{ env.PYTHON_VERSION }}\n WORKER_TYPE=gpu"
174
169
175
170
steps :
176
171
- name : Checkout code
Original file line number Diff line number Diff line change @@ -77,18 +77,13 @@ jobs:
77
77
include :
78
78
- component : api
79
79
dockerfile : docker/api/Dockerfile.new
80
- build_args : |
81
- PYTHON_VERSION=${{ env.PYTHON_VERSION }}
80
+ build_args : " PYTHON_VERSION=${{ env.PYTHON_VERSION }}"
82
81
- component : worker-cpu
83
82
dockerfile : docker/worker/Dockerfile
84
- build_args : |
85
- PYTHON_VERSION=${{ env.PYTHON_VERSION }}
86
- WORKER_TYPE=cpu
83
+ build_args : " PYTHON_VERSION=${{ env.PYTHON_VERSION }}\n WORKER_TYPE=cpu"
87
84
- component : worker-gpu
88
85
dockerfile : docker/worker/Dockerfile
89
- build_args : |
90
- PYTHON_VERSION=${{ env.PYTHON_VERSION }}
91
- WORKER_TYPE=gpu
86
+ build_args : " PYTHON_VERSION=${{ env.PYTHON_VERSION }}\n WORKER_TYPE=gpu"
92
87
93
88
steps :
94
89
- name : Checkout code
@@ -155,8 +150,7 @@ jobs:
155
150
with :
156
151
context : .
157
152
file : docker/api/Dockerfile.new
158
- build-args : |
159
- PYTHON_VERSION=${{ env.PYTHON_VERSION }}
153
+ build-args : " PYTHON_VERSION=${{ env.PYTHON_VERSION }}"
160
154
tags : ffmpeg-api:ffmpeg-test
161
155
load : true
162
156
@@ -226,8 +220,7 @@ jobs:
226
220
with :
227
221
context : .
228
222
file : docker/api/Dockerfile.new
229
- build-args : |
230
- PYTHON_VERSION=${{ env.PYTHON_VERSION }}
223
+ build-args : " PYTHON_VERSION=${{ env.PYTHON_VERSION }}"
231
224
tags : ffmpeg-api:security-scan
232
225
load : true
233
226
You can’t perform that action at this time.
0 commit comments