From 1b72739000497e432f30d1e1265808a85059b483 Mon Sep 17 00:00:00 2001 From: Jack O'Sullivan Date: Tue, 5 Dec 2023 16:58:20 +0000 Subject: [PATCH] devshell: Add update-installer command --- devshell/commands.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/devshell/commands.nix b/devshell/commands.nix index 91559f4..e05826b 100644 --- a/devshell/commands.nix +++ b/devshell/commands.nix @@ -121,5 +121,11 @@ in help = "Update home-manager flake inputs"; 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''; + } ]; }