devshell: Add update-installer command
All checks were successful
CI / Check, build and cache Nix flake (push) Successful in 16m49s

This commit is contained in:
Jack O'Sullivan 2023-12-05 16:58:20 +00:00
parent c28acb339b
commit 1b72739000

View File

@ -121,5 +121,11 @@ in
help = "Update home-manager flake inputs"; help = "Update home-manager flake inputs";
command = ''update-inputs home-manager-{unstable,stable}''; command = ''update-inputs home-manager-{unstable,stable}'';
} }
{
name = "update-installer";
category = "tasks";
help = "Update installer tag (to trigger new release)";
command = ''git tag -f installer && git push -f origin installer'';
}
]; ];
} }