From bd694c3f7dd8a6a5df434571c398f4d844ca097f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Thu, 21 Jul 2022 20:05:22 +0200 Subject: [PATCH] just: Add pushall target for easier releases --- Justfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Justfile b/Justfile index 65719c1..93dd82a 100644 --- a/Justfile +++ b/Justfile @@ -32,6 +32,13 @@ build-release: build-release-static: cargo build --release --target {{static_target}} --features=static-build +pushall: + for r in $(git remote) ; do \ + for branch in develop master ; do \ + git push $r $branch ; \ + done ; \ + done + release-patch: ./release.sh patch