Skip to content

Commit

Permalink
Fix republish docker branch (#33501)
Browse files Browse the repository at this point in the history
* Fix republish docker branch

* Don't require version/rc so that workflow can be tested without them

* Remove default
  • Loading branch information
damccorm authored Jan 6, 2025
1 parent b3e7f55 commit 28999bc
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/republish_released_docker_containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,16 @@ on:
inputs:
RELEASE:
description: Beam version of current release (e.g. 2.XX.0)
required: true
default: '2.61.0'
required: false
RC:
description: Integer RC version for the release (e.g. 3 for RC3)
required: true
default: '3'
required: false
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:

Expand Down

0 comments on commit 28999bc

Please sign in to comment.