From 129111273d3c35342dd19510c5ec481481c2299d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Thu, 30 Jun 2022 19:08:03 +0200 Subject: [PATCH] Add Justfile target for release --- Justfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Justfile b/Justfile index 15f68c8..1697e74 100644 --- a/Justfile +++ b/Justfile @@ -26,12 +26,15 @@ lint: lint-fix: cargo clippy --no-deps --fix -release: +build-release: cargo build --release -release-static: +build-release-static: cargo build --release --target {{static_target}} --features=static-build +release-patch: + ./release.sh patch + test-binary: env \ GITHUB_API_BASEURL=http://rest:5000/github \