diff --git a/tool/common.sh b/tool/common.sh index fde88841..d8e9af00 100644 --- a/tool/common.sh +++ b/tool/common.sh @@ -8,14 +8,13 @@ function image_tag() { function cache_build_args() { tag="$1" - build_args=("--cache-from" "type=registry,ref=$tag") + + build_args=( + "--load" + "--cache-from" "type=registry,ref=$tag" + ) if [ -v GITHUB_REPOSITORY ]; then - build_args+=( - "--push" - "--cache-to" "type=registry,ref=$tag,mode=max" - ) - else - build_args+=("--load") + build_args+=("--cache-to" "type=registry,ref=$tag,mode=max") fi echo "${build_args[*]}"