diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-03-12 07:57:31 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-03-12 07:57:31 +0100 |
| commit | b12f5ad81b52ba47ac8859ae5d8fe32ec211fe57 (patch) | |
| tree | 945dadc357dd62341ff1e6f3dfdb773054b35d71 | |
| parent | 5fecbf65571f93b51c3a6204d2943ff1cdcecb1c (diff) | |
Run the make in the app
| -rw-r--r-- | Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -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 |