From 7e9a501c88fad0429a0a0c6e36ac722936988524 Mon Sep 17 00:00:00 2001 From: PandaNinjas Date: Sun, 25 Jun 2023 19:43:20 -0400 Subject: [PATCH] Add QEMU to the action --- .github/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f7d086b2..0252df71 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -49,7 +49,11 @@ jobs: with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - + + - name: Install QEMU + run: | + sudo apt-get install -y qemu qemu-user-static binfmt-support + - name: Build and push Docker image uses: docker/build-push-action@v3 with: