From 4dfd8d3dd6d0e5835085781b98d2bb542ff4a6bb Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Tue, 12 Mar 2024 21:05:30 +0100 Subject: Add artefact signing --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 8130a1c..4c077dd 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,9 @@ build: prepare cargo build --profile $(profile) --target $(target) release: rpm tar - rsync -avz $(app_name)-$(target)-$(channel).tar.gz deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name) + @$(eval filename := $(app_name)-$(target)-$(channel)) + rsync -avz $(filename).tar.gz deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name) + rsync -avz $(filename).asc deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name) $(architectures): ifneq ($(channel),) @@ -27,7 +29,9 @@ endif rpm: build tar: build - tar -czvf $(app_name)-$(target)-$(channel).tar.gz -C target/$(target)/$(profile)/ $(app_name) + @$(eval filename := $(app_name)-$(target)-$(channel)) + tar -czvf $(filename).tar.gz -C target/$(target)/$(profile)/ $(app_name) + gpg --armor --output $(filename).asc --detach-sig $(filename).tar.gz package: $(architectures) -- cgit