Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/republish_released_docker_containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ on:
- cron: "0 6 * * 1"
env:
docker_registry: gcr.io
release: "${{ github.event.inputs.RELEASE || '2.68.0' }}"
release: "${{ github.event.inputs.RELEASE || '2.69.0' }}"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

possible to get the latest Beam version automatically instead of updating this with every release?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Its actually surprisingly tricky because of the ordering of things (you need the release before checkout). So its possible, but maybe more trouble than its worth. An easier version might be to auto-update this as part of our other post-release workflows.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I expect this will fail unless we cherry-pick #36583 to the post-release branch, would you mind doing this as well?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can be in a follow up pr

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

rc: "${{ github.event.inputs.RC || '2' }}"

jobs:
Expand Down
Loading