We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0227ab commit 39cc58eCopy full SHA for 39cc58e
build.py
@@ -133,6 +133,17 @@
133
134
135
if args[build_utils.FLAG_RELEASE]:
136
+ # Bump all versions in some filess
137
+ previous_version = build_utils.get_latest_version()
138
+ if previous_version:
139
+ build_utils.replace_in_files(
140
+ previous_version,
141
+ VERSION,
142
+ file_paths=["./README.md", "./deployment/google-cloud-run/Dockerfile"],
143
+ regex=False,
144
+ exit_on_error=True,
145
+ )
146
+
147
build_docker.release_docker_image(
148
docker_image_name,
149
VERSION,
0 commit comments