From 9faa823f53e1f3166146b8440ef4b6dc04f2cb06 Mon Sep 17 00:00:00 2001 From: s3krit Date: Thu, 30 Jan 2020 16:18:36 +0100 Subject: [PATCH] Update publish-docker.sh (#11428) Add :latest tag to building stable releases --- scripts/docker/hub/publish-docker.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/docker/hub/publish-docker.sh b/scripts/docker/hub/publish-docker.sh index a232cdde8..a341ccc12 100755 --- a/scripts/docker/hub/publish-docker.sh +++ b/scripts/docker/hub/publish-docker.sh @@ -29,6 +29,7 @@ case "${SCHEDULE_TAG:-${CI_COMMIT_REF_NAME}}" in --build-arg VCS_REF="${CI_COMMIT_SHA}" \ --build-arg BUILD_DATE="$(date -u '+%Y-%m-%dT%H:%M:%SZ')" \ --tag "parity/parity:${VERSION}-${CI_COMMIT_REF_NAME}" \ + --tag "parity/parity:latest" \ --tag "parity/parity:stable" \ --file tools/Dockerfile .; docker push "parity/parity:${VERSION}-${CI_COMMIT_REF_NAME}";