Skip to content

Commit

Permalink
fix: incorrect env for releaser
Browse files Browse the repository at this point in the history
  • Loading branch information
kirinnee committed Oct 19, 2023
1 parent 4b3cbd4 commit f11f713
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
6 changes: 6 additions & 0 deletions nix/env.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,10 @@ with packages;
docker
helm
];

releaser = [
nodejs
sg
npm
];
}
4 changes: 4 additions & 0 deletions nix/shells.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,8 @@ with env;
buildInputs = system ++ main ++ lint ++ infra;
inherit shellHook;
};
releaser = pkgs.mkShell {
buildInputs = system ++ main ++ lint ++ infra ++ releaser;
inherit shellHook;
};
}

0 comments on commit f11f713

Please sign in to comment.