From c3c7206f1f14e70ac98240919476eda80b54f1a9 Mon Sep 17 00:00:00 2001 From: Robert Fletcher Date: Mon, 3 Feb 2025 15:05:19 -0800 Subject: [PATCH] Docker: re-enable arm64 builds This switches to `ubuntu-22.04` and reenables arm64 builds. It turns out there's [an issue with the Github Actions runner image][is]. People seem to be having luck downgrading the image. [is]: https://github.com/actions/runner-images/issues/11471 --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 41c5ed523..937450997 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ env: jobs: build_docker: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout uses: actions/checkout@v4 @@ -50,7 +50,7 @@ jobs: with: context: . file: ./Dockerfile - platforms: linux/amd64 + platforms: linux/amd64,linux/arm64 push: ${{ github.ref_name == 'main' }} tags: | ${{ steps.get-tag-latest.outputs.tags }}