Skip to content

Commit f11f713

Browse files
committed
fix: incorrect env for releaser
1 parent 4b3cbd4 commit f11f713

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

nix/env.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,10 @@ with packages;
4141
docker
4242
helm
4343
];
44+
45+
releaser = [
46+
nodejs
47+
sg
48+
npm
49+
];
4450
}

nix/shells.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,8 @@ with env;
99
buildInputs = system ++ main ++ lint ++ infra;
1010
inherit shellHook;
1111
};
12+
releaser = pkgs.mkShell {
13+
buildInputs = system ++ main ++ lint ++ infra ++ releaser;
14+
inherit shellHook;
15+
};
1216
}

0 commit comments

Comments
 (0)