Add Justfile target for release

This commit is contained in:
2022-06-30 19:08:03 +02:00
parent d62a19d741
commit 129111273d

View File

@@ -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 \