We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11873b2 commit 1b4dcadCopy full SHA for 1b4dcad
.gitlab/templates/pipeline.yaml.tpl
@@ -301,3 +301,22 @@ publish image ({{ $multi_arch_image_flavor.name }}):
301
IMG_SIGNING: false
302
303
{{ end }} # end multi_arch_image_flavors
304
+
305
+layer package:
306
+ stage: build
307
+ image: registry.ddbuild.io/images/docker:20.10
308
+ tags: ["arch:amd64"]
309
+ needs:
310
+ {{ range (ds "flavors").flavors }}
311
+ - layer ({{ .name }})
312
+ {{ end }} # end flavors
313
+ dependencies:
314
315
316
317
+ artifacts:
318
+ expire_in: 1 hr
319
+ paths:
320
+ - .layers/datadog_extensions-bundle-${CI_JOB_ID}.zip
321
+ script:
322
+ - zip .layers/datadog_extensions-bundle-${CI_JOB_ID}.zip .layers/datadog_extension-*.zip
0 commit comments