aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
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)