This is an automated email from the ASF dual-hosted git repository.
mmerli pushed a commit to branch branch-2.7
in repository https://gitbox.apache.org/repos/asf/pulsar.git
The following commit(s) were added to refs/heads/branch-2.7 by this push:
new 81fe6b6 Remove pulsar-dashboard from the publish process since its
image already was removed from branch-2.7 (#12534)
81fe6b6 is described below
commit 81fe6b6056be11bb434ece38eb816c2b9f817d4c
Author: Ting Yuan <[email protected]>
AuthorDate: Sat Oct 30 08:54:57 2021 +0800
Remove pulsar-dashboard from the publish process since its image already
was removed from branch-2.7 (#12534)
---
docker/publish.sh | 4 ----
1 file changed, 4 deletions(-)
diff --git a/docker/publish.sh b/docker/publish.sh
index 21e9a1b..c064286 100755
--- a/docker/publish.sh
+++ b/docker/publish.sh
@@ -65,25 +65,21 @@ set -e
docker tag pulsar:latest ${docker_registry_org}/pulsar:latest
docker tag pulsar-all:latest ${docker_registry_org}/pulsar-all:latest
docker tag pulsar-grafana:latest ${docker_registry_org}/pulsar-grafana:latest
-docker tag pulsar-dashboard:latest
${docker_registry_org}/pulsar-dashboard:latest
docker tag pulsar-standalone:latest
${docker_registry_org}/pulsar-standalone: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 pulsar-grafana:latest
${docker_registry_org}/pulsar-grafana:$MVN_VERSION
-docker tag pulsar-dashboard:latest
${docker_registry_org}/pulsar-dashboard:$MVN_VERSION
docker tag pulsar-standalone:latest
${docker_registry_org}/pulsar-standalone:$MVN_VERSION
# Push all images and tags
docker push ${docker_registry_org}/pulsar:latest
docker push ${docker_registry_org}/pulsar-all:latest
docker push ${docker_registry_org}/pulsar-grafana:latest
-docker push ${docker_registry_org}/pulsar-dashboard:latest
docker push ${docker_registry_org}/pulsar-standalone:latest
docker push ${docker_registry_org}/pulsar:$MVN_VERSION
docker push ${docker_registry_org}/pulsar-all:$MVN_VERSION
docker push ${docker_registry_org}/pulsar-grafana:$MVN_VERSION
-docker push ${docker_registry_org}/pulsar-dashboard:$MVN_VERSION
docker push ${docker_registry_org}/pulsar-standalone:$MVN_VERSION
echo "Finished pushing images to ${docker_registry_org}"