From 3915ecbdf93234b00d72560820febdf63f77d6f0 Mon Sep 17 00:00:00 2001 From: trev Date: Tue, 18 Mar 2025 16:35:29 -0400 Subject: [PATCH] refactor: ts-bump -> ts-release --- flake.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 4ef58a9..d2fe33a 100644 --- a/flake.nix +++ b/flake.nix @@ -145,7 +145,7 @@ }) (writeShellApplication { - name = "ts-bump"; + name = "ts-release"; text = '' git_root=$(git rev-parse --show-toplevel) @@ -162,12 +162,12 @@ git add package.json cd "''${git_root}" - nix-update --flake --subpackage --version "''${next_version_no_v}" client default + nix-update --flake --version "''${next_version_no_v}" --subpackage client default git add flake.nix - git commit -m "bump: ''${version} -> ''${next_version}" + git commit -m "release: ''${version} -> ''${next_version}" git push origin main - git tag -a "''${next_version}" -m "bump: ''${version} -> ''${next_version}" + git tag -a "''${next_version}" -m "release: ''${version} -> ''${next_version}" git push origin "''${next_version}" ''; })