This is an automated email from the ASF dual-hosted git repository.
damccorm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new e7ec432db7b Fix docker search (#32750)
e7ec432db7b is described below
commit e7ec432db7bf4d7c0b8c77a1dc5f54acab903462
Author: Danny McCormick <[email protected]>
AuthorDate: Fri Oct 11 10:16:11 2024 -0400
Fix docker search (#32750)
---
.github/workflows/finalize_release.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/finalize_release.yml
b/.github/workflows/finalize_release.yml
index 17ef17ed784..126e1024908 100644
--- a/.github/workflows/finalize_release.yml
+++ b/.github/workflows/finalize_release.yml
@@ -55,7 +55,7 @@ jobs:
echo "Publish SDK docker images to Docker Hub."
echo "================Pull RC Containers from DockerHub==========="
- IMAGES=$(docker search apache/beam_ --format "{{.Name}}" --limit 100)
+ IMAGES=$(docker search apache/beam --format "{{.Name}}" --limit 100)
KNOWN_IMAGES=()
echo "We are using ${RC_VERSION} to push docker images for ${RELEASE}."
while read IMAGE; do