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 <jv@jviotti.com>
This commit is contained in:
Juan Cruz Viotti 2018-02-23 11:47:11 +00:00 committed by GitHub
parent 8a86d0e655
commit 677fc5aa68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)