diff options
author | Andrew Grimberg <agrimberg@linuxfoundation.org> | 2017-05-08 20:04:25 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-05-08 20:04:25 +0000 |
commit | 8efe9e994e2a2e4036f70838fcb59b30b419759a (patch) | |
tree | d2b9799338a8464c0b046b8143ab045d2a433891 /jjb | |
parent | 94a0273710a9e5468c30ccdc9bc78860fa9d46f2 (diff) | |
parent | f2f06c976a1ede25aca6fbf7efa94c69ddbe35ab (diff) |
Merge "Update docker push to use 1.1-STAGING-latest aai"
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/include-docker-push.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/jjb/include-docker-push.sh b/jjb/include-docker-push.sh index 3e1b883ff..015ac7453 100644 --- a/jjb/include-docker-push.sh +++ b/jjb/include-docker-push.sh @@ -29,6 +29,9 @@ if [[ $PROJECT =~ $SEARCH ]] ; then if [ "$VERSION" == "1.0.0" ]; then docker tag $REPO_PATH:latest $REPO_PATH:1.0-STAGING-latest; docker push $REPO_PATH:1.0-STAGING-latest; + else if [ "$VERSION" == "1.1.0" ]; then + docker tag $REPO_PATH:latest $REPO_PATH:1.1-STAGING-latest; + docker push $REPO_PATH:1.0-STAGING-latest; else docker push $REPO_PATH:latest; fi |