From ebe4e522df8b9cd8fa65a26ca78bd5b1a97b4c02 Mon Sep 17 00:00:00 2001 From: jianglai Date: Thu, 25 Apr 2019 12:59:05 -0700 Subject: [PATCH] Use GCS HTTPS endpoints when pulling dependencies This alleviates the needs to have Google credentials even when downloading from a public bucket. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=245290867 --- release/cloudbuild-proxy.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release/cloudbuild-proxy.yaml b/release/cloudbuild-proxy.yaml index 3121eeef6..6239974b1 100644 --- a/release/cloudbuild-proxy.yaml +++ b/release/cloudbuild-proxy.yaml @@ -26,8 +26,8 @@ steps: - ':proxy:deployJar' - '-x' - 'autoLintGradle' - - '-PmavenUrl=gcs://domain-registry-maven-repository/maven' - - '-PpluginsUrl=gcs://domain-registry-maven-repository/plugins' + - '-PmavenUrl=https://storage.googleapis.com/domain-registry-maven-repository/maven' + - '-PpluginsUrl=https://storage.googleapis.com/domain-registry-maven-repository/plugins' dir: 'gradle' # Build the docker image. - name: 'gcr.io/${PROJECT_ID}/builder:latest'