From 17ccec3d1adbd20e24d089f864686c7e8c3eec15 Mon Sep 17 00:00:00 2001 From: Gregor Kleen Date: Fri, 17 Sep 2021 12:04:54 +0200 Subject: [PATCH] chore(gitlab-ci): ... --- flake.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index 3c2109663..2ace1e91d 100644 --- a/flake.nix +++ b/flake.nix @@ -102,17 +102,17 @@ mkPushUniworxDocker = dockerImage: pkgs.writeScriptBin "push-${dockerImage.name}" '' #!${pkgs.zsh}/bin/zsh -xe - target=''${1-docker://registry.gitlab.com/fradrive/fradrive/uniworx-demo:${dockerImage.imageTag}} + target=''${1-docker://registry.gitlab.com/fradrive/fradrive/${dockerImage.name}:${dockerImage.imageTag}} [[ -n "''${1}" ]] && shift ${pkgs.skopeo}/bin/skopeo ''${@} --insecure-policy copy docker-archive://${dockerImage} ''${target} ''; uniworxBackend = pkgs.symlinkJoin { name = "uniworx"; paths = [ - pkgs."uniworx:exe:uniworx" - pkgs."uniworx:exe:uniworxdb" - pkgs."uniworx:exe:uniworxload" - pkgs."uniworx:exe:uniworx-wflint" + haskellFlake.packages."uniworx:exe:uniworx" + haskellFlake.packages."uniworx:exe:uniworxdb" + haskellFlake.packages."uniworx:exe:uniworxload" + haskellFlake.packages."uniworx:exe:uniworx-wflint" ]; }; in {