1
0
mirror of https://github.com/google/nomulus synced 2026-01-03 11:45:39 +00:00

Update Cloud Scheduler and Cloud Tasks deployment process (#2666)

This commit is contained in:
Lai Jiang
2025-02-06 13:53:50 -05:00
committed by GitHub
parent 6c138420b0
commit 8a36fb5f1f
15 changed files with 108 additions and 13 deletions

View File

@@ -23,11 +23,11 @@ task tagProxyImage(dependsOn: buildProxyImage, type: Exec) {
}
task pushProxyImage(dependsOn: tagProxyImage, type: Exec) {
configure verifyDeploymentConfig
commandLine 'docker', 'push', "gcr.io/${rootProject.gcpProject}/proxy"
}
task deployProxy(dependsOn: pushProxyImage, type: Exec) {
configure verifyDeploymentConfig
commandLine './deploy-proxy-for-env.sh', "${rootProject.environment}"
}