Check for TRIGGERED_BUILDKITE_TAG

This commit is contained in:
Michael Vines 2018-10-25 16:37:54 -07:00
parent 48685cf766
commit 160cff4a30
No known key found for this signature in database
GPG Key ID: 33F4FDEC4E0E88BD
1 changed files with 1 additions and 1 deletions

View File

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