We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e812bf7 commit 2cc8542Copy full SHA for 2cc8542
src/gardenlinux/oci/container.py
@@ -454,6 +454,9 @@ 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 for file_name in artifacts_dir.iterdir() if file_name.is_file()
459
+ ]
460
461
artifacts_with_metadata = Container.get_artifacts_metadata_from_files(
462
files, manifest.arch
0 commit comments