1
0
mirror of https://github.com/phusion/baseimage-docker.git synced 2026-03-26 12:29:07 +00:00

Ensure building multiarch works when the image name isn't overridden

Stop tagging latest by when running the make release step
This commit is contained in:
Mark Ison
2019-05-30 15:04:35 +01:00
parent b5c34e9776
commit 9c9ffde394
3 changed files with 6 additions and 8 deletions

View File

@@ -2,10 +2,7 @@
set -e
set -x
if [[ $TRAVIS_PULL_REQUEST == 'false' ]]; then
for arch in $ARCHS; do
echo ${arch}
docker pull $NAME:$VERSION-${arch}
if [[ $TAG_LATEST != 'true' ]]; then
@@ -23,5 +20,3 @@ if [[ $TAG_LATEST != 'true' ]]; then
else
docker manifest push $NAME:latest
fi
fi