diff --git a/justfile b/justfile index 42a54d9..f016cb7 100644 --- a/justfile +++ b/justfile @@ -15,10 +15,15 @@ clean-wasm-pack: cat pkg/rudus.js.backup | tail -n+2>> pkg/rudus.js rm pkg/rudus.js.backup -from-branch := shell("git branch --show-current") +from-branch := `git branch --show-current` release: - echo "{{from-branch}}" + just wasm + git commit -am "release build" + git checkout release + git merge {{from-branch}} + git push + git checkout {{from-branch}} serve: open http://localhost:8080/index.html && miniserve pkg