]> git.r.bdr.sh - rbdr/blog/blobdiff - Makefile
Run the make in the app
[rbdr/blog] / Makefile
index 8f2acec0eaa30e9e695711c8a9fc96841b9089ae..0a4d393e8b44e261ef8b617dff425de8c02a2680 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -13,11 +13,24 @@ prepare:
 build: prepare
        cargo build --profile $(profile) --target $(target)
 
+release:
+       @echo "Releasing target/$(target)/$(profile) to $(channel)"
+
 $(architectures):
        $(MAKE) -e target=$@ rpm
+ifneq ($(channel),)
+       $(MAKE) -e channel=$(channel) -e target=$@ release
+endif
 
 rpm: build
 
 package: $(architectures)
 
-.PHONY: default build $(architectures) rpm package prepare set_rust
+ci:
+ifeq ($(GIT_REF),refs/heads/main)
+       $(MAKE) -e profile=release -e channel=unstable package
+else ifneq (,$(findstring refs/tags/,$(GIT_REF)))
+       $(MAKE) -e profile=release -e channel=$(subst refs/tags/,,$(GIT_REF)) package
+endif
+
+.PHONY: default build $(architectures) rpm package prepare set_rust ci release