From 045d85fab46652b1bb42701600c2efcdb2ed8971 Mon Sep 17 00:00:00 2001 From: MrFlynn Date: Mon, 28 Dec 2020 01:30:14 -0800 Subject: [PATCH] conf: Fixed cache-to directive in build step. --- .github/workflows/release.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ef0e049..7dcd389 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -61,8 +61,7 @@ jobs: - name: Build image run: | docker buildx build \ - --cache-from "type=local,src=/tmp/buildx-cache" \ - --cache-to "type=local,src=/tmp/buildx-cache" \ + --cache-to "type=local,dest=/tmp/buildx-cache" \ --output "type=image,push=false" \ ${{ steps.setup.outputs.build_args }} - name: Login to hub.docker.com