@@ -268,12 +268,17 @@ jobs:
268268 with :
269269 name : ${{ needs.services-common-whl.outputs.package_name }}
270270 path : ./build_context_path
271+
271272 - name : Download .whl dependencies
272273 uses : actions/download-artifact@v5
273274 with :
274275 name : ${{ needs.services-adgs-whl.outputs.package_name }}
275276 path : ./build_context_path
276277
278+ - name : Copy layer-cleanup.sh script
279+ run : cp -t ./build_context_path ./.github/scripts/layer-cleanup.sh
280+ shell : bash
281+
277282 - name : Copy debug mode dependencies
278283 if : ${{ needs.set-env.outputs.debug_mode }} == true
279284 run : cp -t ./build_context_path ./.github/scripts/git_debug_image.sh
@@ -310,12 +315,17 @@ jobs:
310315 with :
311316 name : ${{ needs.services-common-whl.outputs.package_name }}
312317 path : ./build_context_path
318+
313319 - name : Download .whl dependencies
314320 uses : actions/download-artifact@v5
315321 with :
316322 name : ${{ needs.services-cadip-whl.outputs.package_name }}
317323 path : ./build_context_path
318324
325+ - name : Copy layer-cleanup.sh script
326+ run : cp -t ./build_context_path ./.github/scripts/layer-cleanup.sh
327+ shell : bash
328+
319329 - name : Copy debug mode dependencies
320330 if : ${{ needs.set-env.outputs.debug_mode }} == true
321331 run : cp -t ./build_context_path ./.github/scripts/git_debug_image.sh
@@ -351,12 +361,17 @@ jobs:
351361 with :
352362 name : ${{ needs.services-common-whl.outputs.package_name }}
353363 path : ./build_context_path
364+
354365 - name : Download .whl dependencies
355366 uses : actions/download-artifact@v5
356367 with :
357368 name : ${{ needs.services-catalog-whl.outputs.package_name }}
358369 path : ./build_context_path
359370
371+ - name : Copy layer-cleanup.sh script
372+ run : cp -t ./build_context_path ./.github/scripts/layer-cleanup.sh
373+ shell : bash
374+
360375 - name : Copy debug mode dependencies
361376 if : ${{ needs.set-env.outputs.debug_mode }} == true
362377 run : cp -t ./build_context_path ./.github/scripts/git_debug_image.sh
@@ -399,6 +414,10 @@ jobs:
399414 run : cp ./services/frontend/.github/entrypoint_frontend.sh ./build_context_path
400415 shell : bash
401416
417+ - name : Copy layer-cleanup.sh script
418+ run : cp -t ./build_context_path ./.github/scripts/layer-cleanup.sh
419+ shell : bash
420+
402421 - name : Copy debug mode dependencies
403422 if : ${{ needs.set-env.outputs.debug_mode }} == true
404423 run : cp -t ./build_context_path ./.github/scripts/git_debug_image.sh
@@ -435,12 +454,17 @@ jobs:
435454 with :
436455 name : ${{ needs.services-common-whl.outputs.package_name }}
437456 path : ./build_context_path
457+
438458 - name : Download .whl dependencies
439459 uses : actions/download-artifact@v5
440460 with :
441461 name : ${{ needs.services-staging-whl.outputs.package_name }}
442462 path : ./build_context_path
443463
464+ - name : Copy layer-cleanup.sh script
465+ run : cp -t ./build_context_path ./.github/scripts/layer-cleanup.sh
466+ shell : bash
467+
444468 - name : Copy debug mode dependencies
445469 if : ${{ needs.set-env.outputs.debug_mode }} == true
446470 run : cp -t ./build_context_path ./.github/scripts/git_debug_image.sh
@@ -477,12 +501,17 @@ jobs:
477501 with :
478502 name : ${{ needs.services-common-whl.outputs.package_name }}
479503 path : ./build_context_path
504+
480505 - name : Download .whl dependencies
481506 uses : actions/download-artifact@v5
482507 with :
483508 name : ${{ needs.services-staging-whl.outputs.package_name }}
484509 path : ./build_context_path
485510
511+ - name : Copy layer-cleanup.sh script
512+ run : cp -t ./build_context_path ./.github/scripts/layer-cleanup.sh
513+ shell : bash
514+
486515 - id : publish-docker
487516 uses : ./.github/actions/publish-docker
488517 with :
0 commit comments