diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-03-13 09:22:07 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-03-13 09:22:07 +0100 |
| commit | 3b38f8e96d1f77e1502890d4195fb74c78673050 (patch) | |
| tree | be5f7eb5a63e7e43144140cd70908266dcc69683 | |
| parent | 27c166ebb8ac1bdeebc39a642af15f491edff516 (diff) | |
Set the release
| -rw-r--r-- | .build.yml | 1 | ||||
| -rw-r--r-- | Makefile | 4 |
2 files changed, 4 insertions, 1 deletions
@@ -2,6 +2,7 @@ image: archlinux packages: - make - rsync + - coreutils - clang - lld - rustup @@ -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) |