From 59b0245f8dc4b5a4b294ecf97ed73fede4564450 Mon Sep 17 00:00:00 2001 From: Paco Xu Date: Mon, 18 Nov 2024 11:29:30 +0800 Subject: [PATCH] replace k8s.gcr.io by registry.k8s.io --- .github/workflows/releases-images.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/releases-images.yml b/.github/workflows/releases-images.yml index 5065f4c797..38d4f0fc59 100644 --- a/.github/workflows/releases-images.yml +++ b/.github/workflows/releases-images.yml @@ -30,7 +30,7 @@ jobs: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin - name: Push images run: | - OLD_REGISTRY=k8s.gcr.io REGISTRY="ghcr.io/$(echo ${{ github.repository }} | tr "A-Z" "a-z")" make push-image + OLD_REGISTRY=registry.k8s.io REGISTRY="ghcr.io/$(echo ${{ github.repository }} | tr "A-Z" "a-z")" make push-image - name: Sync others image env: GH_ID: ${{ github.actor }}