This is an automated email from the ASF dual-hosted git repository. damccorm pushed a commit to branch users/damccorm/tmp-ml-fix in repository https://gitbox.apache.org/repos/asf/beam.git
commit c3bee145f8f7734b450231fc9c2f3cab6709faf1 Author: Danny Mccormick <[email protected]> AuthorDate: Thu Oct 16 14:24:18 2025 -0400 Temp fix to allow pushing ml/distroless containers --- .github/workflows/build_release_candidate.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build_release_candidate.yml b/.github/workflows/build_release_candidate.yml index b070ada17a0..c4200b561fd 100644 --- a/.github/workflows/build_release_candidate.yml +++ b/.github/workflows/build_release_candidate.yml @@ -259,13 +259,16 @@ jobs: # Any task which is skipped from a broader task must be explicitly included in this list to avoid accidentally missing new # tasks as they are added. images_to_publish: [ - {"gradle_task": ":pushAllRunnersDockerImages", "skip_flags": ""}, - {"gradle_task": ":sdks:python:container:push39", "skip_flags": ""}, - {"gradle_task": ":sdks:python:container:push310", "skip_flags": ""}, - {"gradle_task": ":sdks:python:container:push311", "skip_flags": ""}, - {"gradle_task": ":sdks:python:container:pushAll", "skip_flags": "-Pskip-python-39-images -Pskip-python-310-images -Pskip-python-311-images"}, - {"gradle_task": ":pushAllSdkDockerImages", "skip_flags": "-Pskip-python-images"}, - {"gradle_task": ":pushAllDockerImages", "skip_flags": "-Pskip-runner-images -Pskip-sdk-images"} + {"gradle_task": ":sdks:python:container:ml:push39", "skip_flags": ""}, + {"gradle_task": ":sdks:python:container:ml:push310", "skip_flags": ""}, + {"gradle_task": ":sdks:python:container:ml:push311", "skip_flags": ""}, + {"gradle_task": ":sdks:python:container:ml:push312", "skip_flags": ""}, + {"gradle_task": ":sdks:python:container:ml:pushAll", "skip_flags": "-Pskip-python-39-images -Pskip-python-310-images -Pskip-python-311-images -Pskip-python-312-images"}, + {"gradle_task": ":sdks:python:container:distroless:push39", "skip_flags": ""}, + {"gradle_task": ":sdks:python:container:distroless:push310", "skip_flags": ""}, + {"gradle_task": ":sdks:python:container:distroless:push311", "skip_flags": ""}, + {"gradle_task": ":sdks:python:container:distroless:push312", "skip_flags": ""}, + {"gradle_task": ":sdks:python:container:distroless:pushAll", "skip_flags": "-Pskip-python-39-images -Pskip-python-310-images -Pskip-python-311-images -Pskip-python-312-images"}, ] steps: - name: Checkout
