gitlab-ci: try setting NIX_PATH explicitly
This commit is contained in:
parent
97a2e46eeb
commit
98cd1c7427
1 changed files with 5 additions and 1 deletions
|
@ -44,7 +44,11 @@ let
|
||||||
tags = [ "cacher" ];
|
tags = [ "cacher" ];
|
||||||
only.refs = [ "branch/default" ];
|
only.refs = [ "branch/default" ];
|
||||||
|
|
||||||
script = ''cd web/lukegbcom && ./deploy.sh'';
|
script = ''
|
||||||
|
export NIX_PATH=nixpkgs=$(readlink -f third_party/nixpkgs)
|
||||||
|
cd web/lukegbcom
|
||||||
|
./deploy.sh
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
}; # // (lib.mapAttrs deployStage deployMachs);
|
}; # // (lib.mapAttrs deployStage deployMachs);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue