From ac996f89401b916eacfcd4b87199d644e1eb6635 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Wed, 2 Nov 2016 00:28:33 -0700 Subject: [PATCH] Push code before publishing --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 4c66a17..32874e5 100644 --- a/justfile +++ b/justfile @@ -19,12 +19,12 @@ publish: clippy build git branch | grep '* master' git diff --no-ext-diff --quiet --exit-code grep 'version("{{version}}")' src/app.rs + git push github master:master + git push origin master:master cargo publish git tag -a "v{{version}}" -m "v{{version}}" git push github --tags - git push github master:master git push origin --tags - git push origin master:master clippy: rustup run nightly cargo clippy