From 677fc5aa683608462283bb2c0a9911d7d0052ef9 Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Fri, 23 Feb 2018 11:47:11 +0000 Subject: [PATCH] chore: only publish production packages to Bintray (#2076) The devel channels will be completely deprecated. The deb/rpm snapshot builds will still be accessible through GitHub Releases as part of Resin CI builds. Change-Type: patch Signed-off-by: Juan Cruz Viotti --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 0ae55876..9e355146 100644 --- a/Makefile +++ b/Makefile @@ -482,6 +482,7 @@ PUBLISHABLES += publish-aws-s3 TARGETS += publish-aws-s3 endif +ifeq ($(RELEASE_TYPE),production) ifdef PUBLISH_BINTRAY_DEBIAN publish-bintray-debian: $(PUBLISH_BINTRAY_DEBIAN) $(foreach publishable,$^,$(call execute-command,./scripts/publish/bintray.sh \ @@ -513,6 +514,7 @@ publish-bintray-redhat: $(PUBLISH_BINTRAY_REDHAT) PUBLISHABLES += publish-bintray-redhat TARGETS += publish-bintray-redhat endif +endif publish-all: $(PUBLISHABLES)