20
20
uses : ./.github/workflows/actions/build
21
21
with :
22
22
path : epicbox-debian
23
- image_name_tag : debian:bullseye
23
+ image_name : debian
24
+ image_tag : bullseye
24
25
username : ${{ secrets.REGISTRY_USER }}
25
26
password : ${{ secrets.REGISTRY_PASSWORD }}
26
27
add_hash : false
34
35
uses : ./.github/workflows/actions/build
35
36
with :
36
37
path : epicbox-clojure
37
- image_name_tag : clojure:1.9.0.397
38
+ image_name : clojure
39
+ image_tag : 1.9.0.397
38
40
username : ${{ secrets.REGISTRY_USER }}
39
41
password : ${{ secrets.REGISTRY_PASSWORD }}
40
42
build_gcc_image :
48
50
uses : ./.github/workflows/actions/build
49
51
with :
50
52
path : epicbox-gcc
51
- image_name_tag : gcc:10.2.1
53
+ image_name : gcc
54
+ image_tag : 10.2.1
52
55
username : ${{ secrets.REGISTRY_USER }}
53
56
password : ${{ secrets.REGISTRY_PASSWORD }}
54
57
build_go_image :
61
64
uses : ./.github/workflows/actions/build
62
65
with :
63
66
path : epicbox-go
64
- image_name_tag : go:1.18.2.1
67
+ image_name : go
68
+ image_tag : 1.18.2.1
65
69
username : ${{ secrets.REGISTRY_USER }}
66
70
password : ${{ secrets.REGISTRY_PASSWORD }}
67
71
build_haskell_image :
74
78
uses : ./.github/workflows/actions/build
75
79
with :
76
80
path : epicbox-haskell
77
- image_name_tag : haskell:8.8.4
81
+ image_name : haskell
82
+ image_tag : 8.8.4
78
83
username : ${{ secrets.REGISTRY_USER }}
79
84
password : ${{ secrets.REGISTRY_PASSWORD }}
80
85
build_hyperskill_go_image :
87
92
uses : ./.github/workflows/actions/build
88
93
with :
89
94
path : epicbox-hyperskill/go
90
- image_name_tag : hyperskill-go:1.18.2
95
+ image_name : hyperskill-go
96
+ image_tag : 1.18.2
91
97
username : ${{ secrets.REGISTRY_USER }}
92
98
password : ${{ secrets.REGISTRY_PASSWORD }}
93
99
build_hyperskill_gcc_image :
@@ -101,7 +107,8 @@ jobs:
101
107
uses : ./.github/workflows/actions/build
102
108
with :
103
109
path : epicbox-hyperskill/gcc
104
- image_name_tag : hyperskill-gcc:10.2.1
110
+ image_name : hyperskill-gcc
111
+ image_tag : 10.2.1
105
112
username : ${{ secrets.REGISTRY_USER }}
106
113
password : ${{ secrets.REGISTRY_PASSWORD }}
107
114
build_hyperskill_gradle_image :
@@ -114,7 +121,8 @@ jobs:
114
121
uses : ./.github/workflows/actions/build
115
122
with :
116
123
path : epicbox-hyperskill/gradle
117
- image_name_tag : hyperskill-gradle:8.5-jdk17
124
+ image_name : hyperskill-gradle
125
+ image_tag : 8.5-jdk17
118
126
username : ${{ secrets.REGISTRY_USER }}
119
127
password : ${{ secrets.REGISTRY_PASSWORD }}
120
128
build_hyperskill_gradle_spring_image :
@@ -127,7 +135,8 @@ jobs:
127
135
uses : ./.github/workflows/actions/build
128
136
with :
129
137
path : epicbox-hyperskill/gradle-spring
130
- image_name_tag : hyperskill-gradle-spring:8.5-jdk17
138
+ image_name : hyperskill-gradle-spring
139
+ image_tag : 8.5-jdk17
131
140
username : ${{ secrets.REGISTRY_USER }}
132
141
password : ${{ secrets.REGISTRY_PASSWORD }}
133
142
build_hyperskill_java_image :
@@ -140,7 +149,8 @@ jobs:
140
149
uses : ./.github/workflows/actions/build
141
150
with :
142
151
path : epicbox-hyperskill/java
143
- image_name_tag : hyperskill-java:17
152
+ image_name : hyperskill-java
153
+ image_tag : 17
144
154
username : ${{ secrets.REGISTRY_USER }}
145
155
password : ${{ secrets.REGISTRY_PASSWORD }}
146
156
build_hyperskill_node_image :
@@ -153,7 +163,8 @@ jobs:
153
163
uses : ./.github/workflows/actions/build
154
164
with :
155
165
path : epicbox-hyperskill/node
156
- image_name_tag : hyperskill-node:18.17.1
166
+ image_name : hyperskill-node
167
+ image_tag : 18.17.1
157
168
username : ${{ secrets.REGISTRY_USER }}
158
169
password : ${{ secrets.REGISTRY_PASSWORD }}
159
170
build_hyperskill_node_javascript_image :
@@ -166,7 +177,8 @@ jobs:
166
177
uses : ./.github/workflows/actions/build
167
178
with :
168
179
path : epicbox-hyperskill/node-javascript
169
- image_name_tag : hyperskill-node-javascript:18.17.1
180
+ image_name : hyperskill-node-javascript
181
+ image_tag : 18.17.1
170
182
username : ${{ secrets.REGISTRY_USER }}
171
183
password : ${{ secrets.REGISTRY_PASSWORD }}
172
184
build_hyperskill_python_image :
@@ -179,7 +191,8 @@ jobs:
179
191
uses : ./.github/workflows/actions/build
180
192
with :
181
193
path : epicbox-hyperskill/python
182
- image_name_tag : hyperskill-python:3.10
194
+ image_name : hyperskill-python
195
+ image_tag : 3.10
183
196
username : ${{ secrets.REGISTRY_USER }}
184
197
password : ${{ secrets.REGISTRY_PASSWORD }}
185
198
build_java_image :
@@ -192,7 +205,8 @@ jobs:
192
205
uses : ./.github/workflows/actions/build
193
206
with :
194
207
path : epicbox-java
195
- image_name_tag : java:23-slim
208
+ image_name : java
209
+ image_tag : 23-slim
196
210
username : ${{ secrets.REGISTRY_USER }}
197
211
password : ${{ secrets.REGISTRY_PASSWORD }}
198
212
build_kotlin_image :
@@ -205,7 +219,8 @@ jobs:
205
219
uses : ./.github/workflows/actions/build
206
220
with :
207
221
path : epicbox-kotlin
208
- image_name_tag : kotlin:2.0.0
222
+ image_name : kotlin
223
+ image_tag : 2.0.0
209
224
username : ${{ secrets.REGISTRY_USER }}
210
225
password : ${{ secrets.REGISTRY_PASSWORD }}
211
226
build_mono_image :
@@ -219,7 +234,8 @@ jobs:
219
234
uses : ./.github/workflows/actions/build
220
235
with :
221
236
path : epicbox-mono
222
- image_name_tag : mono:6.10.0.104
237
+ image_name : mono
238
+ image_tag : 6.10.0.104
223
239
username : ${{ secrets.REGISTRY_USER }}
224
240
password : ${{ secrets.REGISTRY_PASSWORD }}
225
241
build_node_image :
@@ -232,7 +248,8 @@ jobs:
232
248
uses : ./.github/workflows/actions/build
233
249
with :
234
250
path : epicbox-node
235
- image_name_tag : node:18.17.1
251
+ image_name : node
252
+ image_tag : 18.17.1
236
253
username : ${{ secrets.REGISTRY_USER }}
237
254
password : ${{ secrets.REGISTRY_PASSWORD }}
238
255
build_php_image :
@@ -245,7 +262,8 @@ jobs:
245
262
uses : ./.github/workflows/actions/build
246
263
with :
247
264
path : epicbox-php
248
- image_name_tag : php:7.2.6
265
+ image_name : php
266
+ image_tag : 7.2.6
249
267
username : ${{ secrets.REGISTRY_USER }}
250
268
password : ${{ secrets.REGISTRY_PASSWORD }}
251
269
build_pmd_image :
@@ -258,7 +276,8 @@ jobs:
258
276
uses : ./.github/workflows/actions/build
259
277
with :
260
278
path : epicbox-pmd
261
- image_name_tag : pmd:6.9.0
279
+ image_name : pmd
280
+ image_tag : 6.9.0
262
281
username : ${{ secrets.REGISTRY_USER }}
263
282
password : ${{ secrets.REGISTRY_PASSWORD }}
264
283
build_python_310_image :
@@ -271,7 +290,8 @@ jobs:
271
290
uses : ./.github/workflows/actions/build
272
291
with :
273
292
path : epicbox-python/310
274
- image_name_tag : python:3.10.6
293
+ image_name : python
294
+ image_tag : 3.10.6
275
295
username : ${{ secrets.REGISTRY_USER }}
276
296
password : ${{ secrets.REGISTRY_PASSWORD }}
277
297
build_python_311_image :
@@ -284,7 +304,8 @@ jobs:
284
304
uses : ./.github/workflows/actions/build
285
305
with :
286
306
path : epicbox-python/311
287
- image_name_tag : python:3.11.5
307
+ image_name : python
308
+ image_tag : 3.11.5
288
309
username : ${{ secrets.REGISTRY_USER }}
289
310
password : ${{ secrets.REGISTRY_PASSWORD }}
290
311
build_ruby_image :
@@ -297,7 +318,8 @@ jobs:
297
318
uses : ./.github/workflows/actions/build
298
319
with :
299
320
path : epicbox-ruby
300
- image_name_tag : ruby:2.5.3
321
+ image_name : ruby
322
+ image_tag : 2.5.3
301
323
username : ${{ secrets.REGISTRY_USER }}
302
324
password : ${{ secrets.REGISTRY_PASSWORD }}
303
325
build_scala2_image :
@@ -310,7 +332,8 @@ jobs:
310
332
uses : ./.github/workflows/actions/build
311
333
with :
312
334
path : epicbox-scala/2
313
- image_name_tag : scala:2.13.12
335
+ image_name : scala
336
+ image_tag : 2.13.12
314
337
username : ${{ secrets.REGISTRY_USER }}
315
338
password : ${{ secrets.REGISTRY_PASSWORD }}
316
339
build_scala3_image :
@@ -323,7 +346,8 @@ jobs:
323
346
uses : ./.github/workflows/actions/build
324
347
with :
325
348
path : epicbox-scala/3
326
- image_name_tag : scala:3.0.0
349
+ image_name : scala
350
+ image_tag : 3.0.0
327
351
username : ${{ secrets.REGISTRY_USER }}
328
352
password : ${{ secrets.REGISTRY_PASSWORD }}
329
353
build_typescript_image :
@@ -336,7 +360,8 @@ jobs:
336
360
uses : ./.github/workflows/actions/build
337
361
with :
338
362
path : epicbox-typescript
339
- image_name_tag : typescript:4.8.4
363
+ image_name : typescript
364
+ image_tag : 4.8.4
340
365
username : ${{ secrets.REGISTRY_USER }}
341
366
password : ${{ secrets.REGISTRY_PASSWORD }}
342
367
build_hyperstyle_image :
@@ -349,7 +374,8 @@ jobs:
349
374
uses : ./.github/workflows/actions/build
350
375
with :
351
376
path : epicbox-hyperstyle
352
- image_name_tag : hyperstyle:ij-2024.9
377
+ image_name : hyperstyle
378
+ image_tag : ij-2024.9
353
379
username : ${{ secrets.REGISTRY_USER }}
354
380
password : ${{ secrets.REGISTRY_PASSWORD }}
355
381
0 commit comments