From 630a236b84595074f15fca8c5e148e5e0b836ee1 Mon Sep 17 00:00:00 2001 From: Phil Tyler Date: Wed, 8 Feb 2023 12:22:48 -0800 Subject: [PATCH] Circle: Move From Quay to Google AR for go-build (#4) --- .circleci/config.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index cbd138d..b5de206 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,10 +4,10 @@ version: 2.1 executors: go-build: docker: - - image: quay.io/getpantheon/go-build + - image: us-docker.pkg.dev/pantheon-artifacts/internal/go-build:latest auth: - username: $QUAY_USER - password: $QUAY_PASSWD + username: _json_key + password: $CIRCLE_CI_COMMON_KEY commands: save-go-mod-cache: @@ -72,23 +72,23 @@ workflows: jobs: - update-mod-cache: context: - - docker-executor-auth + - gcp-credentials-ar-ci - sig-go-project - build: context: - - docker-executor-auth + - gcp-credentials-ar-ci - sig-go-project requires: - update-mod-cache - test: context: - - docker-executor-auth + - gcp-credentials-ar-ci - sig-go-project requires: - update-mod-cache - release: context: - - docker-executor-auth + - gcp-credentials-ar-ci - sig-go-release requires: - test