This is an automated email from the ASF dual-hosted git repository.

damccorm pushed a commit to branch users/damccorm/fixBranch
in repository https://gitbox.apache.org/repos/asf/beam.git

commit 01eef6efd5557740f685d976999e0946ff2b2bb9
Author: Danny McCormick <[email protected]>
AuthorDate: Mon Jan 6 09:33:12 2025 -0500

    Fix republish docker branch
---
 .github/workflows/republish_released_docker_containers.yml | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/republish_released_docker_containers.yml 
b/.github/workflows/republish_released_docker_containers.yml
index 3c1ff02417c..49933e0f056 100644
--- a/.github/workflows/republish_released_docker_containers.yml
+++ b/.github/workflows/republish_released_docker_containers.yml
@@ -25,17 +25,16 @@ on:
       RELEASE:
         description: Beam version of current release (e.g. 2.XX.0)
         required: true
-        default: '2.61.0'
+        default: '2.XX.0'
       RC:
         description: Integer RC version for the release (e.g. 3 for RC3)
         required: true
-        default: '3'
   schedule:
   - cron: "0 6 * * 1"
 env:
   docker_registry: gcr.io
-  release: "${{ github.event.inputs.RELEASE }}"
-  rc: "${{ github.event.inputs.RC}}"
+  release: "${{ github.event.inputs.RELEASE || '2.61.0' }}"
+  rc: "${{ github.event.inputs.RC || '3' }}"
 
 jobs:
 

Reply via email to