From: Ruben Beltran del Rio Date: Tue, 12 Mar 2024 06:57:31 +0000 (+0100) Subject: Run the make in the app X-Git-Tag: 7.0.0~25 X-Git-Url: https://git.r.bdr.sh/rbdr/blog/commitdiff_plain/b12f5ad81b52ba47ac8859ae5d8fe32ec211fe57?hp=5fecbf65571f93b51c3a6204d2943ff1cdcecb1c Run the make in the app --- diff --git a/Makefile b/Makefile index 7fcb692..0a4d393 100644 --- a/Makefile +++ b/Makefile @@ -28,14 +28,9 @@ package: $(architectures) ci: ifeq ($(GIT_REF),refs/heads/main) - @$(eval channel=unstable) + $(MAKE) -e profile=release -e channel=unstable package else ifneq (,$(findstring refs/tags/,$(GIT_REF))) - @$(eval channel=$(subst refs/tags/,,$(GIT_REF))) -endif -ifneq ($(channel),) - $(MAKE) -e profile=release -e channel=$(channel) package -else - @echo "Channel was $(channel)" + $(MAKE) -e profile=release -e channel=$(subst refs/tags/,,$(GIT_REF)) package endif .PHONY: default build $(architectures) rpm package prepare set_rust ci release