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 682c494 commit c044162Copy full SHA for c044162
build/travis-deploy.sh
@@ -14,6 +14,13 @@ if [ "${TRAVIS_EVENT_TYPE}" = "pull_request" ]; then
14
exit 0
15
fi
16
17
+# Release image tag format: v0.0.0 and latest
18
+if [ -n "$TRAVIS_TAG" ]; then
19
+ echo "Running Release build on Travis"
20
+ make push-release RELEASE_TAG="$TRAVIS_TAG"
21
+ exit 0
22
+fi
23
+
24
# Push image tag format: COMMIT
25
echo "Running push build on Travis"
26
make push
0 commit comments