We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2737a04 commit dea2927Copy full SHA for dea2927
1 file changed
lib/pyxis/release/common.rb
@@ -11,10 +11,12 @@ class Common
11
12
CONTAINER_RELEASE_PUBLISH_USER = 'code0-release-tools'
13
14
+ CONTAINER_IMAGES_TO_RELEASE = Project.components + %i[config-generator]
15
+
16
def copy_container_images_to_release_registry(component_info)
17
container_tag = info.find_container_tag_for_build_id
18
container_tags = component_info.find_manifests.map do |manifest|
- next nil unless Project.components.include?(manifest.first.to_sym)
19
+ next nil unless CONTAINER_IMAGES_TO_RELEASE.include?(manifest.first.to_sym)
20
21
next "#{manifest.first}:#{container_tag}" if manifest.length == 1
22
0 commit comments