From d67e198707a4c73953b53cd56e5831b885d9f590 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Perdomo?= Date: Mon, 17 Feb 2020 15:10:09 +0100 Subject: [PATCH] [#3377] Deploy indexes|cron|queue definitions --- scripts/deploy/deploy.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/deploy/deploy.sh b/scripts/deploy/deploy.sh index 3172a7abc5..357c4025d1 100755 --- a/scripts/deploy/deploy.sh +++ b/scripts/deploy/deploy.sh @@ -73,11 +73,11 @@ function deploy_instance { cp "${config_repo}/${instance_id}/appengine-web.xml" "${staging_dir}/WEB-INF/appengine-web.xml" - gcloud app deploy "${staging_dir}/WEB-INF/appengine-web.xml" \ - --promote \ - --quiet \ - --version=1 \ - --project="${instance_id}" + gcloud app deploy "${staging_dir}/app.yaml" \ + "${staging_dir}/WEB-INF/appengine-generated/queue.yaml" \ + "${staging_dir}/WEB-INF/appengine-generated/index.yaml" \ + "${staging_dir}/WEB-INF/appengine-generated/cron.yaml" \ + --promote --quiet --version=1 --project="${instance_id}" } export -f deploy_instance