aboutsummaryrefslogtreecommitdiff
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
parent27c166ebb8ac1bdeebc39a642af15f491edff516 (diff)
Set the release
-rw-r--r--.build.yml1
-rw-r--r--Makefile4
2 files changed, 4 insertions, 1 deletions
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)