25 lines
464 B
YAML
25 lines
464 B
YAML
|
|
||
|
.cic_meta_variables:
|
||
|
variables:
|
||
|
APP_NAME: cic-meta
|
||
|
DOCKERFILE_PATH: $APP_NAME/docker/Dockerfile
|
||
|
|
||
|
.this_changes_target:
|
||
|
rules:
|
||
|
- changes:
|
||
|
- $CONTEXT/$APP_NAME/*
|
||
|
|
||
|
build-mr-cic-meta:
|
||
|
extends:
|
||
|
- .this_changes_target
|
||
|
- .py_build_merge_request
|
||
|
- .cic_meta_variables
|
||
|
|
||
|
build-push-cic-meta:
|
||
|
extends:
|
||
|
- .this_changes_target
|
||
|
- .py_build_push
|
||
|
- .cic_meta_variables
|
||
|
|
||
|
|