From e139cee5527936b44f4d13011f93b59bc273fa0f Mon Sep 17 00:00:00 2001 From: Fried Hoeben Date: Mon, 2 Apr 2018 16:14:42 +0200 Subject: [PATCH] Add script to create new version and push it to docker hub --- buildVersionTagAndPush.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 buildVersionTagAndPush.sh diff --git a/buildVersionTagAndPush.sh b/buildVersionTagAndPush.sh new file mode 100755 index 0000000..883f276 --- /dev/null +++ b/buildVersionTagAndPush.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash + +VERSION=$1 + +echo "Creating version ${VERSION}" + +./buildBase.sh && ./buildTest.sh && ./buildChrome.sh && ./combineReports.sh && ./tagAndPush.sh ${VERSION}