From ac238481731eb51ed545d808dd7e3712394052d5 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Tue, 25 Nov 2025 16:55:13 -0600 Subject: [PATCH] Set arguments directly --- .gitlab-ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cf1cfdb..69f809e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -33,14 +33,14 @@ default: - IMG: - img-bitwarden - img-immich - variables: - NIX_OPTIONS: >- - --extra-experimental-features - "nix-command flakes" script: - - nix $NIX_OPTIONS build ".#${IMG}" + - nix --extra-experimental-features "nix-command flakes" build ".#${IMG}" - cp -L result "${IMG}.tar.gz" - - nix $NIX_OPTIONS build "nixpkgs#podman" --out-link podman + - >- + nix + --extra-experimental-features "nix-command flakes" + build "nixpkgs#podman" + --out-link podman - >- ./podman/bin/podman login -u "$CI_REGISTRY_USER"