From 2c7bf2cfdb216c9dc3a19e0c3640ff821b2d390e Mon Sep 17 00:00:00 2001 From: Pavlo Tkach <3469726+ptkach@users.noreply.github.com> Date: Mon, 6 May 2024 14:01:31 -0400 Subject: [PATCH] Update cloudbuild-release.yaml with nokeycheck option (#2431) --- release/cloudbuild-release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release/cloudbuild-release.yaml b/release/cloudbuild-release.yaml index 73ec8e94d..e5569aebb 100644 --- a/release/cloudbuild-release.yaml +++ b/release/cloudbuild-release.yaml @@ -210,9 +210,9 @@ steps: $(gcloud auth list --format='get(account)' --filter=active) git add . git commit -m "Release commit for tag ${TAG_NAME}" - git push origin master + git push -o nokeycheck origin master git tag ${TAG_NAME} - git push origin ${TAG_NAME} + git push -o nokeycheck origin ${TAG_NAME} timeout: 3600s options: machineType: 'E2_HIGHCPU_32'