]> git.r.bdr.sh - rbdr/blog/blobdiff - Makefile
Print channel
[rbdr/blog] / Makefile
index b8c68207974a352a4739244c5af6d56e6d8a186d..7fcb69280616a54109061a359601bf4b2731030a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -14,7 +14,7 @@ build: prepare
        cargo build --profile $(profile) --target $(target)
 
 release:
-       @echo "Releasing $(target) to $(channel)"
+       @echo "Releasing target/$(target)/$(profile) to $(channel)"
 
 $(architectures):
        $(MAKE) -e target=$@ rpm
@@ -33,7 +33,9 @@ else ifneq (,$(findstring refs/tags/,$(GIT_REF)))
        @$(eval channel=$(subst refs/tags/,,$(GIT_REF)))
 endif
 ifneq ($(channel),)
-       $(MAKE) -e channel=$(channel) package
+       $(MAKE) -e profile=release -e channel=$(channel) package
+else
+       @echo "Channel was $(channel)"
 endif
 
 .PHONY: default build $(architectures) rpm package prepare set_rust ci release