aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRuben Beltran del Rio <git@r.bdr.sh>2024-03-13 09:22:07 +0100
committerRuben Beltran del Rio <git@r.bdr.sh>2024-03-13 09:22:07 +0100
commit3b38f8e96d1f77e1502890d4195fb74c78673050 (patch)
treebe5f7eb5a63e7e43144140cd70908266dcc69683 /Makefile
parent27c166ebb8ac1bdeebc39a642af15f491edff516 (diff)
Set the release
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)