We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e831402 commit 96c7963Copy full SHA for 96c7963
trigger-dependent-build.sh
@@ -34,6 +34,11 @@ if [ "${TRAVIS_PULL_REQUEST}" != "false" ]; then
34
exit 0
35
fi
36
37
+# Don't run for tagged releases
38
+if [[ $TRAVIS_TAG =~ ^v[[:digit:]] ]]; then
39
+ exit 0
40
+fi
41
+
42
# Make an API request using the auth token set above. First argument is the path
43
# of the API method, all later arguments are passed to curl directly.
44
#
0 commit comments