From b39021b5d3b87e6572da0f7470ab973411f546c5 Mon Sep 17 00:00:00 2001 From: Jason Meridth Date: Sat, 20 Apr 2024 19:11:28 -0500 Subject: [PATCH] fix: release container image build (#244) Seems the [`Unexpected status from HEAD request to : 400 Bad Request`](https://github.com/github/issue-metrics/actions/runs/8758107284/job/24038180863#step:5:1024) is an intermittent error in GitHub Actions and pushing to ghcr that can be solved by using moby/buildkit via https://github.com/docker/build-push-action/issues/761#issuecomment-1383822381 Going to try this with latest release of moby/buildkit to see if it fixes it Signed-off-by: jmeridth --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 24cdbb9..cb9cf94 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -44,6 +44,9 @@ steps: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 + with: + driver-opts: | + image=moby/buildkit:v0.13.1 - name: Log in to the Container registry uses: docker/login-action@v3 with: