From c111f9ab226940fab53d6311271d0047be24a0d1 Mon Sep 17 00:00:00 2001 From: Matt Nish-Lapidus Date: Tue, 8 Jul 2025 18:22:35 -0400 Subject: [PATCH] moved build to after merge in just release --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index da2a169..0dae6bc 100644 --- a/justfile +++ b/justfile @@ -27,10 +27,10 @@ git_status := `git status -s` # publish this branch into release release: echo {{ if git_status == "" {"git status ok"} else {error("please commit changes first")} }} - just build - -git commit -am "release build" git checkout release git merge {{from_branch}} + just build + -git commit -am "release build" git push git checkout {{from_branch}}