Skip to content

Commit 40b975b

Browse files
authored
fix: Move pre-release image builds to quay.io, retire gcr.io pushes (feast-dev#4922)
move pre-release image builds to quay.io Signed-off-by: Tommy Hughes <tohughes@redhat.com>
1 parent 0db56a2 commit 40b975b

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/java_master_only.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
component: [feature-server-java]
1717
env:
1818
MAVEN_CACHE: gs://feast-templocation-kf-feast/.m2.2020-08-19.tar
19-
REGISTRY: gcr.io/kf-feast
19+
REGISTRY: quay.io/feastdev-ci
2020
steps:
2121
- uses: actions/checkout@v4
2222
with:

.github/workflows/java_pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
component: [ feature-server-java ]
8585
env:
8686
MAVEN_CACHE: gs://feast-templocation-kf-feast/.m2.2020-08-19.tar
87-
REGISTRY: gcr.io/kf-feast
87+
REGISTRY: quay.io/feastdev-ci
8888
steps:
8989
- uses: actions/checkout@v4
9090
with:

.github/workflows/master_only.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
component: [ feature-server, feature-server-java, feature-transformation-server, feast-operator ]
9898
env:
9999
MAVEN_CACHE: gs://feast-templocation-kf-feast/.m2.2020-08-19.tar
100-
REGISTRY: gcr.io/kf-feast
100+
REGISTRY: quay.io/feastdev-ci
101101
steps:
102102
- uses: actions/checkout@v4
103103
- name: Set up QEMU
@@ -106,11 +106,12 @@ jobs:
106106
uses: docker/setup-buildx-action@v2
107107
with:
108108
install: true
109-
- name: Login to DockerHub
109+
- name: Login to Quay.io
110110
uses: docker/login-action@v1
111111
with:
112-
username: ${{ secrets.DOCKERHUB_USERNAME }}
113-
password: ${{ secrets.DOCKERHUB_TOKEN }}
112+
registry: quay.io
113+
username: ${{ secrets.QUAYIO_CI_USERNAME }}
114+
password: ${{ secrets.QUAYIO_CI_TOKEN }}
114115
- name: Authenticate to Google Cloud
115116
uses: 'google-github-actions/auth@v1'
116117
with:

0 commit comments

Comments
 (0)