From 4de93e19b84328b139cf47fab26bdf529574eb98 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Sat, 4 Dec 2021 23:46:46 -0800 Subject: [PATCH] Push to correct origin in publish recipe (#1044) --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index bdbe545..fc518e3 100755 --- a/justfile +++ b/justfile @@ -70,7 +70,7 @@ publish: VERSION=`sed -En 's/version[[:space:]]*=[[:space:]]*"([^"]+)"/\1/p' Cargo.toml | head -1` cd tmp/release git tag -a $VERSION -m "Release $VERSION" - git push github $VERSION + git push origin $VERSION cargo publish cd ../.. rm -rf tmp/release