From 40b975b8468de2678af8b191e93495e51af0b6aa Mon Sep 17 00:00:00 2001 From: Tommy Hughes IV Date: Wed, 15 Jan 2025 05:45:26 -0600 Subject: [PATCH] fix: Move pre-release image builds to quay.io, retire gcr.io pushes (#4922) move pre-release image builds to quay.io Signed-off-by: Tommy Hughes --- .github/workflows/java_master_only.yml | 2 +- .github/workflows/java_pr.yml | 2 +- .github/workflows/master_only.yml | 9 +++++---- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/java_master_only.yml b/.github/workflows/java_master_only.yml index b7f49d1454..16fabbbdee 100644 --- a/.github/workflows/java_master_only.yml +++ b/.github/workflows/java_master_only.yml @@ -16,7 +16,7 @@ jobs: component: [feature-server-java] env: MAVEN_CACHE: gs://feast-templocation-kf-feast/.m2.2020-08-19.tar - REGISTRY: gcr.io/kf-feast + REGISTRY: quay.io/feastdev-ci steps: - uses: actions/checkout@v4 with: diff --git a/.github/workflows/java_pr.yml b/.github/workflows/java_pr.yml index 3aea4d275e..40a2a7a7ec 100644 --- a/.github/workflows/java_pr.yml +++ b/.github/workflows/java_pr.yml @@ -84,7 +84,7 @@ jobs: component: [ feature-server-java ] env: MAVEN_CACHE: gs://feast-templocation-kf-feast/.m2.2020-08-19.tar - REGISTRY: gcr.io/kf-feast + REGISTRY: quay.io/feastdev-ci steps: - uses: actions/checkout@v4 with: diff --git a/.github/workflows/master_only.yml b/.github/workflows/master_only.yml index a04d767eb5..5524623285 100644 --- a/.github/workflows/master_only.yml +++ b/.github/workflows/master_only.yml @@ -97,7 +97,7 @@ jobs: component: [ feature-server, feature-server-java, feature-transformation-server, feast-operator ] env: MAVEN_CACHE: gs://feast-templocation-kf-feast/.m2.2020-08-19.tar - REGISTRY: gcr.io/kf-feast + REGISTRY: quay.io/feastdev-ci steps: - uses: actions/checkout@v4 - name: Set up QEMU @@ -106,11 +106,12 @@ jobs: uses: docker/setup-buildx-action@v2 with: install: true - - name: Login to DockerHub + - name: Login to Quay.io uses: docker/login-action@v1 with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} + registry: quay.io + username: ${{ secrets.QUAYIO_CI_USERNAME }} + password: ${{ secrets.QUAYIO_CI_TOKEN }} - name: Authenticate to Google Cloud uses: 'google-github-actions/auth@v1' with: