From 160cff4a30fa77abe56d7c7f0d0888c5f4a12461 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Thu, 25 Oct 2018 16:37:54 -0700 Subject: [PATCH] Check for TRIGGERED_BUILDKITE_TAG --- ci/publish-crate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/publish-crate.sh b/ci/publish-crate.sh index 80b11d840..fb0dafb58 100755 --- a/ci/publish-crate.sh +++ b/ci/publish-crate.sh @@ -2,7 +2,7 @@ cd "$(dirname "$0")/.." -if [[ -z "$BUILDKITE_TAG" ]]; then +if [[ -z "$BUILDKITE_TAG" && -z "$TRIGGERED_BUILDKITE_TAG" ]]; then # Skip publish if this is not a tagged release exit 0 fi