From c4ca76e39e2ceeaad516950296475cb65d51f2df Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Mon, 7 Jan 2019 19:53:52 -0800 Subject: [PATCH] Only check 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 016a8c715..5b613a032 100755 --- a/ci/publish-crate.sh +++ b/ci/publish-crate.sh @@ -30,7 +30,7 @@ maybePackage="echo Package skipped" maybePublish="echo Publish skipped" # Only package/publish if this is a tagged release -if [[ -n $BUILDKITE_TAG && -n $TRIGGERED_BUILDKITE_TAG ]]; then +if [[ -n $TRIGGERED_BUILDKITE_TAG ]]; then maybePackage="cargo package" # Only publish if there's no human around