]> git.r.bdr.sh - rbdr/blog/blobdiff - Makefile
Set location of the rpm
[rbdr/blog] / Makefile
index 4c077dd9a3677d89fa81583ba6731f9893e56797..c213f1aca6db8a6e87e575c7af958dd1fc614af4 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -16,8 +16,6 @@ build: prepare
 
 release: rpm tar
        @$(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,11 +25,13 @@ else
 endif
 
 rpm: build
+       cargo generate-rpm --profile $(profile) --target $(target)
+       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)
-       gpg --armor --output $(filename).asc --detach-sig $(filename).tar.gz
+       rsync -avz $(filename).tar.gz deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name)
 
 package: $(architectures)