We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8b0bff commit a109c95Copy full SHA for a109c95
nix/cloud/actions.nix
@@ -4,8 +4,8 @@
4
}: {
5
"cicero/cd" = {
6
config,
7
- options,
8
lib,
+ ociRegistry,
9
...
10
11
io = ''
@@ -34,11 +34,11 @@
34
}
35
'';
36
37
- prepare = [
38
- rec {
+ prepare = with cell.oci-images.cicero; [
+ {
39
type = "nix2container";
40
- name = cell.library.ociNamer imageDrv;
41
- imageDrv = cell.oci-images.cicero;
+ name = "${ociRegistry}/${lib.removePrefix "registry.ci.iog.io/" imageName}:${imageTag}";
+ imageDrv = drvPath;
42
43
];
44
@@ -49,7 +49,7 @@
49
let
50
hcl =
51
(
52
- (inputs.nixpkgs.lib.callPackageWith cell.constants.args.prod)
+ (lib.callPackageWith cell.constants.args.prod)
53
./nomadEnvs/cicero
54
{
55
inherit cell;
0 commit comments