Skip to content

Commit 96c7963

Browse files
committed
Don't trigger dependent builds for releases
1 parent e831402 commit 96c7963

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

trigger-dependent-build.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ if [ "${TRAVIS_PULL_REQUEST}" != "false" ]; then
3434
exit 0
3535
fi
3636

37+
# Don't run for tagged releases
38+
if [[ $TRAVIS_TAG =~ ^v[[:digit:]] ]]; then
39+
exit 0
40+
fi
41+
3742
# Make an API request using the auth token set above. First argument is the path
3843
# of the API method, all later arguments are passed to curl directly.
3944
#

0 commit comments

Comments
 (0)