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