From: Ruben Beltran del Rio Date: Wed, 13 Mar 2024 08:22:07 +0000 (+0100) Subject: Set the release X-Git-Tag: 7.0.0~6 X-Git-Url: https://git.r.bdr.sh/rbdr/blog/commitdiff_plain/3b38f8e96d1f77e1502890d4195fb74c78673050?ds=sidebyside Set the release --- diff --git a/.build.yml b/.build.yml index b148723..725c31b 100644 --- a/.build.yml +++ b/.build.yml @@ -2,6 +2,7 @@ image: archlinux packages: - make - rsync + - coreutils - clang - lld - rustup diff --git a/Makefile b/Makefile index c213f1a..5522ece 100644 --- a/Makefile +++ b/Makefile @@ -25,13 +25,15 @@ else endif rpm: build - cargo generate-rpm --profile $(profile) --target $(target) + cargo generate-rpm --profile $(profile) --target $(target) -s'release = "$(channel)"' rsync -avz target/$(target)/generate-rpm/*.rpm deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name) tar: build @$(eval filename := $(app_name)-$(target)-$(channel)) tar -czvf $(filename).tar.gz -C target/$(target)/$(profile)/ $(app_name) + sha256sum $(filename).tar.gz > $(filename).sha256 rsync -avz $(filename).tar.gz deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name) + rsync -avz $(filename).sha256 deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name) package: $(architectures)