From 173d1f2658e8ebc5d3226a9d092c498ba9d78556 Mon Sep 17 00:00:00 2001 From: Yutaka Kondo Date: Wed, 15 May 2024 08:56:23 +0900 Subject: [PATCH] use constant --- .github/workflows/docker-build.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/docker-build.yaml b/.github/workflows/docker-build.yaml index 9dad1954c88..e3753e507c2 100644 --- a/.github/workflows/docker-build.yaml +++ b/.github/workflows/docker-build.yaml @@ -32,7 +32,7 @@ jobs: id: meta uses: docker/metadata-action@v4 with: - images: ghcr.io/${{ github.actor }}/${{ github.repository }} + images: ghcr.io/youtalk/autoware - name: Build and push with Buildx Bake uses: docker/bake-action@v4 @@ -43,16 +43,16 @@ jobs: docker/autoware-openadk/docker-bake.hcl targets: default set: | - prebuilt.cache-from=type=registry,ref=ghcr.io/${{ github.actor }}/${{ github.repository }}:buildcache - prebuilt.cache-to=type=registry,ref=ghcr.io/${{ github.actor }}/${{ github.repository }}:buildcache,mode=max + prebuilt.cache-from=type=registry,ref=ghcr.io/youtalk/autoware:buildcache + prebuilt.cache-to=type=registry,ref=ghcr.io/youtalk/autoware:buildcache,mode=max prebuilt.tags=${{ steps.meta.outputs.tags }} prebuilt.labels=${{ steps.meta.outputs.labels }} - devel.cache-from=type=registry,ref=ghcr.io/${{ github.actor }}/${{ github.repository }}:buildcache - devel.cache-to=type=registry,ref=ghcr.io/${{ github.actor }}/${{ github.repository }}:buildcache,mode=max + devel.cache-from=type=registry,ref=ghcr.io/youtalk/autoware:buildcache + devel.cache-to=type=registry,ref=ghcr.io/youtalk/autoware:buildcache,mode=max devel.tags=${{ steps.meta.outputs.tags }} devel.labels=${{ steps.meta.outputs.labels }} - runtime.cache-from=type=registry,ref=ghcr.io/${{ github.actor }}/${{ github.repository }}:buildcache - runtime.cache-to=type=registry,ref=ghcr.io/${{ github.actor }}/${{ github.repository }}:buildcache,mode=max + runtime.cache-from=type=registry,ref=ghcr.io/youtalk/autoware:buildcache + runtime.cache-to=type=registry,ref=ghcr.io/youtalk/autoware:buildcache,mode=max runtime.tags=${{ steps.meta.outputs.tags }} runtime.labels=${{ steps.meta.outputs.labels }}