From 22a3e873003a39620ac54be8ccdfbb76329689a5 Mon Sep 17 00:00:00 2001 From: Niklas van Schrick Date: Sat, 25 Apr 2026 21:07:42 +0200 Subject: [PATCH] Skip cloud extension during release publishing --- lib/pyxis/release/common.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/pyxis/release/common.rb b/lib/pyxis/release/common.rb index 41f405f..63b4457 100644 --- a/lib/pyxis/release/common.rb +++ b/lib/pyxis/release/common.rb @@ -17,6 +17,7 @@ def copy_container_images_to_release_registry(component_info) container_tag = component_info.find_container_tag_for_build_id container_tags = component_info.find_manifests.map do |manifest| next nil unless CONTAINER_IMAGES_TO_RELEASE.include?(manifest.first.to_sym) + next nil if manifest.length != 1 && manifest.last == 'cloud' next "#{manifest.first}:#{container_tag}" if manifest.length == 1