From b856ebd8fc271854f9b30655b0f32f8fafb81190 Mon Sep 17 00:00:00 2001 From: Ee Durbin Date: Thu, 14 Mar 2024 18:32:17 -0400 Subject: [PATCH] add BUILDKIT_NO_CLIENT_TOKEN=1 per https://github.com/docker/buildx/issues/1613#issuecomment-1431335244 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b2f98da8ba4..580a99df46e2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,7 +80,7 @@ jobs: - name: Build Docker Image run: | echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.owner.name || github.repository_owner }} --password-stdin - docker buildx build --build-arg="DEVEL=yes" --build-arg="CI=yes" --cache-to type=gha,mode=max --cache-from type=gha --push -t ghcr.io/${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name || github.repository }}:ci-${{ github.run_id }} . + BUILDKIT_NO_CLIENT_TOKEN=1 docker buildx build --build-arg="DEVEL=yes" --build-arg="CI=yes" --cache-to type=gha,mode=max --cache-from type=gha --push -t ghcr.io/${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name || github.repository }}:ci-${{ github.run_id }} . test: needs: build strategy: