From c476afb951915ef8c7fab82316af945fa0bb6df8 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Sat, 8 Oct 2016 17:56:28 -0700 Subject: [PATCH] Add `git push github master` to publish recipe So that github always reflect version in cargo. --- justfile | 1 + 1 file changed, 1 insertion(+) diff --git a/justfile b/justfile index 93e039d..948d8db 100644 --- a/justfile +++ b/justfile @@ -3,6 +3,7 @@ test: cargo run -- quine clean > /dev/null 2> /dev/null publish: + git push github master cargo publish # make a quine, compile it, and verify it