Skip tagging images for vulnerability scanning until we have bug cloning
functionality for the other milestones.

BUG=b/297072262
TEST=None.
RELEASE_NOTE=None

Change-Id: I70e99fa90b0de38ef1254db0b04fedaae0312fb2
Reviewed-on: https://cos-review.googlesource.com/c/cos/tools/+/68252
Tested-by: Anil Altinay <aaltinay@google.com>
Cloud-Build: GCB Service account <228075978874@cloudbuild.gserviceaccount.com>
Reviewed-by: Michael Kochera <kochera@google.com>
diff --git a/release/release.py b/release/release.py
index f794668..17f525b 100644
--- a/release/release.py
+++ b/release/release.py
@@ -96,7 +96,8 @@
           for dst_bucket in dst_buckets:
             copy_container_image(src_bucket, dst_bucket, staging_container_name, release_container_name, build_tag, release_tags)
           add_tag_for_sbom(src_bucket, staging_container_name, release_container_name, build_tag)
-          add_tag_for_vuln_scanning(src_bucket, staging_container_name, build_tag)
+          # Wait until we a have bug cloning functionality.
+          # add_tag_for_vuln_scanning(src_bucket, staging_container_name, build_tag)
 
     except yaml.YAMLError as ex:
       raise Exception("Invalid YAML config: %s" % str(ex))