From db049972eb9813dcbd5cf94f9e791f04f909fd62 Mon Sep 17 00:00:00 2001 From: technofab Date: Wed, 24 Apr 2024 22:21:08 +0200 Subject: [PATCH] ci: add file endings to buildah manifest create --- flake.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index c63300a..764a2ec 100644 --- a/flake.nix +++ b/flake.nix @@ -131,7 +131,9 @@ script = [ '' buildah manifest create localhost/nix-coder-image \ - ${lib.concatStrings (builtins.map (sys: "docker-archive:dist/nix-coder-image_${sys} \\") SYSTEMS)} + ${lib.concatStrings ( + builtins.map (sys: "docker-archive:dist/nix-coder-image_${sys}.tar.gz \\") SYSTEMS + )} '' '' buildah manifest push --all localhost/nix-coder-image \