Skip to content

Commit

Permalink
[ci] Support multi tags when pushing docker image (#10771)
Browse files Browse the repository at this point in the history
  • Loading branch information
liushilongbuaa authored May 9, 2022
1 parent 71a515e commit 0e30ffe
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions push_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,10 @@ docker login -u ${REGISTRY_USERNAME} -p "${REGISTRY_PASSWD}" ${REGISTRY_SERVER_W
docker_image_name=$(basename ${DOCKER_IMAGE_FILE} | cut -d. -f1)
remote_image_name=${REGISTRY_SERVER_WITH_PORT}/${docker_image_name}

[ -z "${DOCKER_IMAGE_TAG}" ] || {
push_it ${docker_image_name} ${remote_image_name}:${DOCKER_IMAGE_TAG}
}
for tag in ${DOCKER_IMAGE_TAG}
do
push_it ${docker_image_name} ${remote_image_name}:$tag
done

if [ -n "${sonic_version}" ] && [ -n "${sonic_platform}" ]
then
Expand Down

0 comments on commit 0e30ffe

Please sign in to comment.