Skip to content

Commit

Permalink
fix: Move pre-release image builds to quay.io, retire gcr.io pushes (f…
Browse files Browse the repository at this point in the history
…east-dev#4922)

move pre-release image builds to quay.io

Signed-off-by: Tommy Hughes <[email protected]>
  • Loading branch information
tchughesiv authored Jan 15, 2025
1 parent 0db56a2 commit 40b975b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/java_master_only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/java_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/master_only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit 40b975b

Please sign in to comment.