This is an automated email from the ASF dual-hosted git repository.
yubiao pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/pulsar.git
The following commit(s) were added to refs/heads/branch-3.0 by this push:
new c1a854299b9 [fix][build] Fix publish image script (#20305)
c1a854299b9 is described below
commit c1a854299b9d3335f815122c31ae7bf87f4efa9e
Author: Zixuan Liu <[email protected]>
AuthorDate: Fri May 12 12:27:49 2023 +0800
[fix][build] Fix publish image script (#20305)
Signed-off-by: Zixuan Liu <[email protected]>
(cherry picked from commit 94c7bf3e57f6fc4323b36142fba651c4ad21d301)
---
docker/publish.sh | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/docker/publish.sh b/docker/publish.sh
index af0d72d4b34..45b338d85f8 100755
--- a/docker/publish.sh
+++ b/docker/publish.sh
@@ -62,11 +62,11 @@ set -x
# Fail if any of the subsequent commands fail
set -e
-docker tag pulsar:latest ${docker_registry_org}/pulsar:latest
-docker tag pulsar-all:latest ${docker_registry_org}/pulsar-all:latest
+docker tag apachepulsar/pulsar:latest ${docker_registry_org}/pulsar:latest
+docker tag apachepulsar/pulsar-all:latest
${docker_registry_org}/pulsar-all:latest
-docker tag pulsar:latest ${docker_registry_org}/pulsar:$MVN_VERSION
-docker tag pulsar-all:latest ${docker_registry_org}/pulsar-all:$MVN_VERSION
+docker tag apachepulsar/pulsar:latest
${docker_registry_org}/pulsar:$MVN_VERSION
+docker tag apachepulsar/pulsar-all:latest
${docker_registry_org}/pulsar-all:$MVN_VERSION
# Push all images and tags
docker push ${docker_registry_org}/pulsar:latest