mirror of
https://gitlab.com/TECHNOFAB/coder-templates.git
synced 2025-12-12 02:00:11 +01:00
fix(CI): fix empty line breaking buildah manifest create command
This commit is contained in:
parent
62aad66435
commit
aebad80568
1 changed files with 4 additions and 6 deletions
10
flake.nix
10
flake.nix
|
|
@ -130,12 +130,10 @@
|
|||
''mkdir -p /var/tmp''
|
||||
];
|
||||
script = [
|
||||
''
|
||||
buildah manifest create localhost/nix-coder-image \
|
||||
${lib.concatStrings (
|
||||
builtins.map (sys: "docker-archive:dist/nix-coder-image_${sys}.tar.gz \\") SYSTEMS
|
||||
)}
|
||||
''
|
||||
(lib.concatStringsSep " " (
|
||||
["buildah manifest create localhost/nix-coder-image"]
|
||||
++ builtins.map (sys: "docker-archive:dist/nix-coder-image_${sys}.tar.gz ") SYSTEMS
|
||||
))
|
||||
''
|
||||
buildah manifest push --all localhost/nix-coder-image \
|
||||
docker://''${CI_REGISTRY_IMAGE}/nix-coder-image:$CI_COMMIT_SHORT_SHA
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue