FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit d5d73c14 authored by Mike Knee's avatar Mike Knee
Browse files

Merge branch 'dev-disable-multi-stage-release-it' into 'master'

Disable release-it in multi-stage builds

See merge request !113
parents edb8ed7e d1182667
No related branches found
Tags v6.1.1
1 merge request!113Disable release-it in multi-stage builds
......@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [6.4.3] - 2024-12-13
### Fixed
- `release-it` jobs prevented from running in child pipelines.
## [6.4.2] - 2024-12-11
### Fixed
......
......@@ -32,6 +32,17 @@ at the _end_ of the `include` section of your CI configuration. Note that you
will have to override the `rules:` sections of the various security scanning and
test jobs appropriately.
## Adding Common Pipelines
Newly added common pipeline components should be mindful that they can be
triggered in some repositories by the `multi-target-docker-images` pipeline.
This pipeline is used to create multiple output images from a single repository,
and to do so creates a child pipeline to run the actual build.
If the common pipeline being added should run once only in the parent pipeline
it must be explicitly disabled under [the multi target
definition](auto-devops/multi-target-docker-images.gitlab-ci.yml).
## Specific documentation
The following documents describe support for specific languages or repository
......
......@@ -43,3 +43,4 @@ variables:
DEPENDENCY_SCANNING_DISABLED: $MULTI_DOCKER_IMAGE_BUILD_ENABLED
SAST_DISABLED: $MULTI_DOCKER_IMAGE_BUILD_ENABLED
PRE_COMMIT_DISABLED: $MULTI_DOCKER_IMAGE_BUILD_ENABLED
RELEASE_IT_DISABLED: $MULTI_DOCKER_IMAGE_BUILD_ENABLED
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment