update release script to build in release

This commit is contained in:
Scott Richmond 2025-07-08 16:57:36 -04:00
parent fb9c49a9de
commit 428177e5b7

View File

@ -27,10 +27,10 @@ git_status := `git status -s`
# publish this branch into release # publish this branch into release
release: release:
echo {{ if git_status == "" {"git status ok"} else {error("please commit changes first")} }} echo {{ if git_status == "" {"git status ok"} else {error("please commit changes first")} }}
just build
-git commit -am "release build"
git checkout release git checkout release
git merge {{from_branch}} git merge {{from_branch}}
just build
-git commit -am "release build"
git push git push
git checkout {{from_branch}} git checkout {{from_branch}}