update-scripts: move update logic from CI to dedicated script

(cherry picked from commit 132c1611f6)
This commit is contained in:
Matt Sturgeon 2025-05-22 17:02:06 +01:00 committed by github-actions[bot]
parent 379d8bb5ca
commit 47699135a5
3 changed files with 76 additions and 35 deletions

View file

@ -9,6 +9,8 @@ lib.fix (self: {
default = self.generate;
generate = lib.callPackageWith (pkgs // self) ./generate.nix { };
update = lib.callPackageWith (pkgs // self) ./update.nix { };
# A shell that has the generate script
shell = pkgs.mkShell { nativeBuildInputs = [ self.generate ]; };