From 88aaf956e5f378a49d4222484b1ed33f7da6a0eb Mon Sep 17 00:00:00 2001 From: yusing Date: Sat, 31 May 2025 22:42:44 +0800 Subject: [PATCH] fix(ci): fix wrong indentation for commented out gha cache in Docker workflow --- .github/workflows/docker-image.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 75b6d95..43d4c86 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -84,10 +84,10 @@ jobs: outputs: type=image,name=${{ env.REGISTRY }}/${{ inputs.image_name }},push-by-digest=true,name-canonical=true,push=true cache-from: | type=registry,ref=${{ env.REGISTRY }}/${{ inputs.image_name }}:buildcache-${{ env.PLATFORM_PAIR }} - # type=gha,scope=${{ github.workflow }}-${{ env.PLATFORM_PAIR }} + # type=gha,scope=${{ github.workflow }}-${{ env.PLATFORM_PAIR }} cache-to: | type=registry,ref=${{ env.REGISTRY }}/${{ inputs.image_name }}:buildcache-${{ env.PLATFORM_PAIR }},mode=max - # type=gha,scope=${{ github.workflow }}-${{ env.PLATFORM_PAIR }},mode=max + # type=gha,scope=${{ github.workflow }}-${{ env.PLATFORM_PAIR }},mode=max build-args: | VERSION=${{ github.ref_name }} MAKE_ARGS=${{ env.MAKE_ARGS }}