From aef1e4db1bede95e3dff6c089414556499ca4759 Mon Sep 17 00:00:00 2001 From: jamesread Date: Fri, 19 Nov 2021 11:54:31 +0000 Subject: [PATCH] try qemu static from GH action --- .github/workflows/build-snapshot.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-snapshot.yml b/.github/workflows/build-snapshot.yml index 2d19b23..3d1040f 100644 --- a/.github/workflows/build-snapshot.yml +++ b/.github/workflows/build-snapshot.yml @@ -3,14 +3,18 @@ name: "Build Snapshot" on: [push] jobs: - rcbuild: + build-snapshot: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 - - name: qemu static - run: sudo apt install -y qemu-user-static + name: Set up QEMU + id: qemu + uses: docker/setup-qemu-action@v1 + with: + image: tonistiigi/binfmt:latest + platforms: arm64,arm - name: Setup Go uses: actions/setup-go@v2