Skip to content

Commit

Permalink
chore(fix): Add fix for image push script (#208) (#209)
Browse files Browse the repository at this point in the history
Signed-off-by: Udit Gaurav <[email protected]>
  • Loading branch information
Karthik Satchitanand authored Nov 15, 2020
1 parent e63f249 commit 86159e5
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions build/push
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,8 @@ then
# When github is tagged with a release, then Travis will
# set the release tag in env TRAVIS_TAG
echo "Pushing ${REPONAME}/${IMGNAME}:${TRAVIS_TAG} ...";
sudo docker tag ${IMAGEID} ${REPONAME}/${IMGNAME}:${TRAVIS_TAG}
sudo docker buildx build --file build/litmus-go/Dockerfile --push --progress plane --platform linux/arm64,linux/amd64 --no-cache --tag ${REPONAME}/${IMGNAME}:${TRAVIS_TAG} .

sudo docker push ${REPONAME}/${IMGNAME}:${TRAVIS_TAG};
echo "Pushing ${REPONAME}/${IMGNAME}:latest ...";
sudo docker tag ${IMAGEID} ${REPONAME}/${IMGNAME}:latest
sudo docker buildx build --file build/litmus-go/Dockerfile --push --progress plane --platform linux/arm64,linux/amd64 --no-cache --tag ${REPONAME}/${IMGNAME}:latest .
fi;
else
Expand Down

0 comments on commit 86159e5

Please sign in to comment.