We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e812bf7 commit ad35dd5Copy full SHA for ad35dd5
src/gardenlinux/oci/container.py
@@ -454,6 +454,11 @@ def push_manifest_and_artifacts_from_directory(
454
if file_path_name.match("*.pxe.tar.gz"):
455
self._logger.info(f"Found nested artifact {file_path_name}")
456
extract_targz(file_path_name, artifacts_dir)
457
+ files = [
458
+ file_name
459
+ for file_name in artifacts_dir.iterdir()
460
+ if file_name.is_file()
461
+ ]
462
463
artifacts_with_metadata = Container.get_artifacts_metadata_from_files(
464
files, manifest.arch
0 commit comments